dsffsd
This commit is contained in:
parent
1e8b636da0
commit
cd45312f58
2 changed files with 0 additions and 21 deletions
|
@ -8,7 +8,6 @@ from .user import *
|
||||||
from .userblock import *
|
from .userblock import *
|
||||||
from .submission import *
|
from .submission import *
|
||||||
from .votes import *
|
from .votes import *
|
||||||
from .images import *
|
|
||||||
from .domains import *
|
from .domains import *
|
||||||
from .subscriptions import *
|
from .subscriptions import *
|
||||||
from files.__main__ import app
|
from files.__main__ import app
|
||||||
|
|
|
@ -1,20 +0,0 @@
|
||||||
from sqlalchemy import *
|
|
||||||
from files.__main__ import Base
|
|
||||||
|
|
||||||
class Image(Base):
|
|
||||||
__tablename__ = "images"
|
|
||||||
id = Column(BigInteger, primary_key=True)
|
|
||||||
state = Column(String)
|
|
||||||
number = Column(Integer)
|
|
||||||
text = Column(String)
|
|
||||||
deletehash = Column(String)
|
|
||||||
|
|
||||||
|
|
||||||
class BadPic(Base):
|
|
||||||
|
|
||||||
__tablename__="badpics"
|
|
||||||
id = Column(BigInteger, primary_key=True)
|
|
||||||
description=Column(String)
|
|
||||||
phash=Column(String)
|
|
||||||
ban_reason=Column(String)
|
|
||||||
ban_time=Column(Integer)
|
|
Loading…
Add table
Add a link
Reference in a new issue