8 lines
180 B
Python
8 lines
180 B
Python
from database.db import engine
|
|
from database.models import Base
|
|
|
|
|
|
async def init_db():
|
|
async with engine.begin() as conn:
|
|
await conn.run_sync(Base.metadata.create_all)
|