remove drop tables function

This commit is contained in:
maxDorninger
2025-02-23 11:41:44 +01:00
parent 606d233ec4
commit 58c23eb69c

View File

@@ -40,9 +40,3 @@ def init_db():
tv.init_table()
log.info("Tables initialized successfully")
def drop_tables() -> None:
with PgDatabase() as db:
db.connection.execute("DROP TABLE IF EXISTS users CASCADE;")
log.info("User Table dropped")