2020-08-25 13:57:18 -04:00
|
|
|
import django.core.serializers.json
|
2020-08-21 15:16:33 -04:00
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
('circuits', '0019_nullbooleanfield_to_booleanfield'),
|
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='circuit',
|
|
|
|
name='custom_field_data',
|
2020-08-25 13:57:18 -04:00
|
|
|
field=models.JSONField(blank=True, default=dict, encoder=django.core.serializers.json.DjangoJSONEncoder),
|
2020-08-21 15:16:33 -04:00
|
|
|
),
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='provider',
|
|
|
|
name='custom_field_data',
|
2020-08-25 13:57:18 -04:00
|
|
|
field=models.JSONField(blank=True, default=dict, encoder=django.core.serializers.json.DjangoJSONEncoder),
|
2020-08-21 15:16:33 -04:00
|
|
|
),
|
|
|
|
]
|