1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 11:34:18 +00:00
royalnet/royalpack/database/tables/rage.py

15 lines
229 B
Python

from __future__ import annotations
from ._imports import *
class Rage(Base):
__tablename__ = "rage"
id = s.Column(s.Integer, primary_key=True)
reason = s.Column(s.Text, nullable=False)
__all__ = (
"Rage",
)