mirror of
https://github.com/ada-dmitry/vol_bot.git
synced 2026-09-24 00:30:19 +00:00
9 lines
226 B
Python
9 lines
226 B
Python
from sqlalchemy import Column, BigInteger, Boolean
|
|
from database import Base
|
|
|
|
class User(Base):
|
|
__tablename__ = "users"
|
|
|
|
user_id = Column(BigInteger, primary_key=True)
|
|
is_subscribed = Column(Boolean, default=True)
|