mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 03:13:12 +00:00
Allow revert migrations
This commit is contained in:
parent
1484b6ec1e
commit
31c2255a3b
1 changed files with 4 additions and 1 deletions
|
@ -16,11 +16,14 @@ class Migration(migrations.Migration):
|
|||
users = apps.get_model("users", "User")
|
||||
users.objects.using(db_alias).all().update(email_state=0)
|
||||
|
||||
def undo_flag_verified(apps, schema_editor):
|
||||
return
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='user',
|
||||
name='email_state',
|
||||
field=models.IntegerField(choices=[(0, 'Verified'), (1, 'Unverified'), (2, 'Waiting for email confirmation')], default=2),
|
||||
),
|
||||
migrations.RunPython(flag_verified),
|
||||
migrations.RunPython(flag_verified, undo_flag_verified),
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue