24 lines
689 B
Python
24 lines
689 B
Python
# Generated by Django 2.2.4 on 2019-08-22 07:10
|
|
|
|
import django.contrib.postgres.fields.jsonb
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('location', '0003_auto_20190821_1407'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='country',
|
|
options={'verbose_name': 'Country', 'verbose_name_plural': 'Countries'},
|
|
),
|
|
migrations.AlterField(
|
|
model_name='country',
|
|
name='name',
|
|
field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, default=None, help_text='{"en":"some text"}', null=True, verbose_name='Name'),
|
|
),
|
|
]
|