Fix rollback table name

This commit is contained in:
amcmanu3 2023-01-19 11:57:11 -05:00
parent 60785500b9
commit 27981619c4

View File

@ -25,7 +25,7 @@ def rollback(migrator, database, **kwargs):
executed = BooleanField(default=False)
class Meta:
table_name = "user_crafty"
table_name = "commands"
database = db
migrator.create_table(Commands)