Spaces:
Paused
Paused
File size: 309 Bytes
4a2ab42 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | import os
import sys
sys.path.append(os.path.join(os.path.dirname(__file__), ".."))
# Import new models to ensure registration
from core.database import create_tables
if __name__ == "__main__":
print("Initializing database tables...")
create_tables()
print("Database initialization complete.")
|