This commit is contained in:
Aevann1 2021-10-15 16:08:27 +02:00
parent bad22322bd
commit 2265d60b22
1400 changed files with 44951 additions and 45061 deletions

16
files/classes/domains.py Normal file → Executable file
View file

@ -1,9 +1,9 @@
from sqlalchemy import *
from files.__main__ import Base
class BannedDomain(Base):
__tablename__ = "banneddomains"
id = Column(Integer, primary_key=True)
domain = Column(String)
from sqlalchemy import *
from files.__main__ import Base
class BannedDomain(Base):
__tablename__ = "banneddomains"
id = Column(Integer, primary_key=True)
domain = Column(String)
reason = Column(String)