gault-millau/apps/location/migrations/0022_city_name_translated.py
littlewolf 57d22bedcb Add gallery
Add name_translated
Add migrations
2019-11-06 22:56:41 +03:00

20 lines
493 B
Python

# Generated by Django 2.2.4 on 2019-11-06 19:37
from django.db import migrations
import utils.models
class Migration(migrations.Migration):
dependencies = [
('location', '0021_citygallery'),
]
operations = [
migrations.AddField(
model_name='city',
name='name_translated',
field=utils.models.TJSONField(blank=True, default=None, help_text='{"en-GB":"some text"}', null=True, verbose_name='Translated name'),
),
]