rDrama/files/classes/domains.py

9 lines
216 B
Python
Raw Normal View History

2021-07-21 01:12:26 +00:00
from sqlalchemy import *
2021-08-04 15:35:10 +00:00
from files.__main__ import Base
2021-07-21 01:12:26 +00:00
2021-08-01 04:24:46 +00:00
class BannedDomain(Base):
2021-07-21 01:12:26 +00:00
2021-08-01 04:52:49 +00:00
__tablename__ = "banneddomains"
2021-07-21 01:12:26 +00:00
id = Column(Integer, primary_key=True)
2021-09-30 19:40:33 +00:00
domain = Column(String(50))
2021-10-06 22:12:04 +00:00
reason = Column(String(100))