alumni_network/app/db/init_db.py

5 lines
98 B
Python

from app.db.session import Base, engine
def init_db():
Base.metadata.create_all(bind=engine)