hobo/hobo/environment/migrations/0025_legacy_urls.py

59 lines
2.1 KiB
Python

# Generated by Django 2.2.24 on 2021-12-02 13:55
import django.contrib.postgres.fields.jsonb
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('environment', '0024_remove_local_hobo'),
]
operations = [
migrations.AddField(
model_name='authentic',
name='legacy_urls',
field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, default=list, null=True),
),
migrations.AddField(
model_name='bijoe',
name='legacy_urls',
field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, default=list, null=True),
),
migrations.AddField(
model_name='chrono',
name='legacy_urls',
field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, default=list, null=True),
),
migrations.AddField(
model_name='combo',
name='legacy_urls',
field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, default=list, null=True),
),
migrations.AddField(
model_name='fargo',
name='legacy_urls',
field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, default=list, null=True),
),
migrations.AddField(
model_name='hobo',
name='legacy_urls',
field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, default=list, null=True),
),
migrations.AddField(
model_name='passerelle',
name='legacy_urls',
field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, default=list, null=True),
),
migrations.AddField(
model_name='wcs',
name='legacy_urls',
field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, default=list, null=True),
),
migrations.AddField(
model_name='welco',
name='legacy_urls',
field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, default=list, null=True),
),
]