Noop reverse migration for standard group removal

This commit is contained in:
Christopher C. Wells 2023-02-08 19:53:44 -08:00 committed by Christopher Charbonneau Wells
parent 1faabdde9d
commit 1f14549e83
1 changed files with 3 additions and 1 deletions

View File

@ -13,4 +13,6 @@ class Migration(migrations.Migration):
("babybuddy", "0026_alter_settings_timezone"), ("babybuddy", "0026_alter_settings_timezone"),
] ]
operations = [migrations.RunPython(remove_standard_group)] operations = [
migrations.RunPython(remove_standard_group, migrations.RunPython.noop)
]