File size: 352 Bytes
d2426db | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | """
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.")
|