Remove some extra tables in migration

This commit is contained in:
Griatch 2017-09-30 16:50:17 +02:00
parent 1e16fda569
commit 64fa098373

View file

@ -40,6 +40,9 @@ def drop_tables(apps, schema_migrator):
_drop_table(db_cursor, "players_playerdb_db_tags")
_drop_table(db_cursor, "players_playerdb_groups")
_drop_table(db_cursor, "players_playerdb_user_permissions")
_drop_table(db_cursor, "comms_msg_db_sender_players")
_drop_table(db_cursor, "comms_msg_db_receivers_players")
_drop_table(db_cursor, "comms_msg_db_hide_from_players")
class Migration(migrations.Migration):