17 lines
447 B
Python
17 lines
447 B
Python
# Generated by Django 2.2.17 on 2021-02-23 22:51
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
def unfreeze_accounts(apps, schema_editor):
|
|
Account = apps.get_model("kfet", "Account")
|
|
Account.objects.all().update(is_frozen=False)
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("kfet", "0075_remove_accountnegative_balance_offset"),
|
|
]
|
|
|
|
operations = [migrations.RunPython(unfreeze_accounts, migrations.RunPython.noop)]
|