comment drop table

This commit is contained in:
2025-09-17 13:13:26 +03:00
parent 7ce114c26c
commit 90683eb8c6

View File

@@ -7,7 +7,7 @@ class DBApplications:
default_path = os.getenv("DB_PATH", "instance/dev.db")
self.db_path = os.path.abspath(default_path)
os.makedirs(os.path.dirname(self.db_path), exist_ok=True)
self.drop_table()
#self.drop_table()
self.create_table()
def drop_table(self):