from sqlalchemy import String from sqlalchemy.orm import mapped_column, Mapped from libs.Db import Db class TwitchLiveNotification(Db.Model): __tablename__ = 'twitch_live_notifications' id:Mapped[int] = mapped_column(primary_key=True) username:Mapped[str] = mapped_column(String(64), nullable=False)