hfghf
This commit is contained in:
parent
b998be923d
commit
d3f080a2a8
15 changed files with 50 additions and 54 deletions
|
@ -22,7 +22,7 @@ class Submission(Base):
|
|||
author_id = Column(BigInteger, ForeignKey("users.id"))
|
||||
edited_utc = Column(BigInteger, default=0)
|
||||
created_utc = Column(BigInteger, default=0)
|
||||
thumburl = Column(String(255))
|
||||
thumburl = Column(String(50))
|
||||
is_banned = Column(Boolean, default=False)
|
||||
removed_by = Column(Integer)
|
||||
bannedfor = Column(Boolean)
|
||||
|
@ -30,8 +30,8 @@ class Submission(Base):
|
|||
views = Column(Integer, default=0)
|
||||
deleted_utc = Column(Integer, default=0)
|
||||
distinguish_level = Column(Integer, default=0)
|
||||
created_str = Column(String(255))
|
||||
stickied = Column(String(255))
|
||||
created_str = Column(String(25))
|
||||
stickied = Column(String(25))
|
||||
is_pinned = Column(Boolean, default=False)
|
||||
private = Column(Boolean, default=False)
|
||||
club = Column(Boolean, default=False)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue