8 lines
175 B
Python
8 lines
175 B
Python
from app.core.database import engine
|
|
from app.db.base import Base
|
|
from app.models import user # noqa: F401
|
|
|
|
|
|
def init_db() -> None:
|
|
Base.metadata.create_all(bind=engine)
|