Finance / backend /init_db.py
BOLO-KESARI
Initial commit for deployment
d2426db
raw
history blame contribute delete
352 Bytes
"""
Create database tables for SQLite.
Run this once to initialize the database.
"""
from app.core.database import engine, Base
from app.models.user import User
print("Creating database tables...")
# Create all tables
Base.metadata.create_all(bind=engine)
print("✅ Database tables created successfully!")
print("You can now run the application.")