File size: 281 Bytes
3f61e65
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from app.core.database import Base, engine
from app.models.models import BetaApplication

def init_db():
    Base.metadata.create_all(bind=engine)

if __name__ == "__main__":
    print("Creating database tables...")
    init_db()
    print("Database tables created successfully!")