kpsul/kfet/migrations/0076_unfreeze_accounts.py
2021-06-15 14:05:39 +02:00

18 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)]