31 lines
832 B
Python
31 lines
832 B
Python
|
from typing import Optional
|
||
|
|
||
|
from sqlalchemy.ext.asyncio import create_async_engine, async_sessionmaker
|
||
|
from sqlalchemy.orm import DeclarativeBase, Mapped, mapped_column
|
||
|
|
||
|
engine = create_async_engine("sqlite+aiosqlite:///tasks.db")
|
||
|
new_session = async_sessionmaker(engine, expire_on_commit=False)
|
||
|
|
||
|
|
||
|
class Model(DeclarativeBase):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class TaskOrm(Model):
|
||
|
__tablename__ = "tasks"
|
||
|
|
||
|
id: Mapped[int] = mapped_column(primary_key=True)
|
||
|
name: Mapped[str]
|
||
|
description: Mapped[Optional[str]]
|
||
|
|
||
|
|
||
|
async def create_tables():
|
||
|
# https://docs.sqlalchemy.org/en/20/orm/extensions/asyncio.html#synopsis-core
|
||
|
async with engine.begin() as conn:
|
||
|
await conn.run_sync(Model.metadata.create_all)
|
||
|
|
||
|
|
||
|
async def delete_tables():
|
||
|
async with engine.begin() as conn:
|
||
|
await conn.run_sync(Model.metadata.drop_all)
|