blob: 403593e300c63d9dd1ff8bff7d3dfc94dc3802ff [file] [log] [blame]
Borjan Tchakaloff6f239a62018-02-19 09:05:50 +01001# -*- coding: utf-8 -*-
2#
3# Extend the Crashreport and Heartbeat models to support the radio version.
4from __future__ import unicode_literals
5
6from django.db import migrations, models
7
8
9class Migration(migrations.Migration):
10
Mitja Nikolauscb50f2c2018-08-24 13:54:48 +020011 dependencies = [("crashreports", "0002_auto_20170502_1155")]
Borjan Tchakaloff6f239a62018-02-19 09:05:50 +010012
13 operations = [
14 migrations.AddField(
Mitja Nikolauscb50f2c2018-08-24 13:54:48 +020015 model_name="crashreport",
16 name="radio_version",
Borjan Tchakaloff6f239a62018-02-19 09:05:50 +010017 field=models.CharField(db_index=True, max_length=200, null=True),
18 ),
19 migrations.AddField(
Mitja Nikolauscb50f2c2018-08-24 13:54:48 +020020 model_name="heartbeat",
21 name="radio_version",
Borjan Tchakaloff6f239a62018-02-19 09:05:50 +010022 field=models.CharField(db_index=True, max_length=200, null=True),
23 ),
24 ]