mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
15 lines
229 B
Python
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",
|
|
)
|