forgotten migrations
This commit is contained in:
parent
a2395b807e
commit
ed18d1c44d
23
apps/account/migrations/0025_auto_20191210_0623.py
Normal file
23
apps/account/migrations/0025_auto_20191210_0623.py
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# Generated by Django 2.2.7 on 2019-12-10 06:23
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('account', '0024_role_establishment_subtype'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='user',
|
||||
name='city',
|
||||
field=models.TextField(blank=True, default=None, null=True, verbose_name='User last visited from city'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='user',
|
||||
name='locale',
|
||||
field=models.CharField(blank=True, default=None, max_length=10, null=True, verbose_name='User last used locale'),
|
||||
),
|
||||
]
|
||||
|
|
@ -18,4 +18,5 @@
|
|||
./manage.py transfer --inquiries
|
||||
./manage.py transfer --assemblage
|
||||
./manage.py transfer --purchased_plaques
|
||||
./manage.py rm_empty_images
|
||||
./manage.py rm_empty_images
|
||||
./manage.py add_artisan_subtype # добавляет подтипы для заведений артизанов
|
||||
Loading…
Reference in New Issue
Block a user