Files
New-planet-api/new-planet-backend/app/db/init_db.py
2025-12-13 14:39:50 +03:00

11 lines
323 B
Python

from app.db.base import Base
from app.db.session import engine
from app.models import user, schedule, task, reward, ai_conversation
async def init_db():
"""Инициализация БД - создание таблиц"""
async with engine.begin() as conn:
await conn.run_sync(Base.metadata.create_all)