From 13f32c8ab4341d88d967beeeaae194092c389e20 Mon Sep 17 00:00:00 2001 From: Shaik Eshrath <123890439+Eshrath027@users.noreply.github.com> Date: Mon, 19 Jan 2026 16:37:39 +0530 Subject: [PATCH] Remove comment about table creation in init_db Removed the comment about creating tables if they do not exist. --- database.py | 1 - 1 file changed, 1 deletion(-) diff --git a/database.py b/database.py index 4d7abaa..17d5ff8 100644 --- a/database.py +++ b/database.py @@ -9,6 +9,5 @@ engine = create_engine(DATABASE_URL, connect_args={"check_same_thread": False} if "sqlite" in DATABASE_URL else {}) SessionLocal = sessionmaker(bind=engine, autocommit=False, autoflush=False) -# Create tables if not exist def init_db(): Base.metadata.create_all(bind=engine)