Added migrations
This commit is contained in:
parent
56b5af1291
commit
191c168c99
|
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 2.2.7 on 2020-01-28 12:33
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('establishment', '0081_menuuploads_title'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='establishment',
|
||||
name='western_name',
|
||||
field=models.CharField(default='', max_length=255, verbose_name='Western name'),
|
||||
),
|
||||
]
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 2.2.7 on 2020-01-28 12:42
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('establishment', '0082_establishment_western_name'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='establishment',
|
||||
name='instagram',
|
||||
field=models.URLField(blank=True, default=None, max_length=255, null=True, verbose_name='Instagram URL'),
|
||||
),
|
||||
]
|
||||
18
apps/location/migrations/0037_address_district_name.py
Normal file
18
apps/location/migrations/0037_address_district_name.py
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 2.2.7 on 2020-01-28 12:47
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('location', '0036_auto_20200127_2004'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='address',
|
||||
name='district_name',
|
||||
field=models.CharField(blank=True, default='', max_length=500, verbose_name='District name'),
|
||||
),
|
||||
]
|
||||
Loading…
Reference in New Issue
Block a user