From 90683eb8c6bec44c8fdc5b41e1544303e6930fab Mon Sep 17 00:00:00 2001 From: Marius Robert Macamete Date: Wed, 17 Sep 2025 13:13:26 +0300 Subject: [PATCH] comment drop table --- client/models/applications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/models/applications.py b/client/models/applications.py index eab8c3b..90413c0 100644 --- a/client/models/applications.py +++ b/client/models/applications.py @@ -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):