backend: исправлено отслеживание изменений столбцов в бд

This commit is contained in:
2022-11-19 06:45:39 +03:00
parent 9672952d34
commit 337bf70534
9 changed files with 71 additions and 262 deletions

View File

@@ -10,7 +10,7 @@ app = Flask(
"__name__",
)
migrate = Migrate(app, db)
migrate = Migrate(app, db, compare_type=True)
admin = Admin(name="TextSouls")
with open("textsouls/config.json") as config_file: