Delete original groups from auth_group table

This commit is contained in:
Jeremy Stretch 2024-02-28 15:28:36 -05:00
parent 9f64e7d88f
commit 4031901669

View File

@ -52,4 +52,9 @@ class Migration(migrations.Migration):
migrations.DeleteModel(
name='NetBoxGroup',
),
# Delete groups from the old table
migrations.RunSQL(
"DELETE from auth_group"
),
]