gd
This commit is contained in:
parent
191fe9cf19
commit
fcef03cb65
4 changed files with 31 additions and 31 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)
|
||||
thumburl = Column(String(255))
|
||||
is_banned = Column(Boolean, default=False)
|
||||
removed_by = Column(Integer)
|
||||
bannedfor = Column(Boolean)
|
||||
|
@ -31,7 +31,7 @@ class Submission(Base):
|
|||
deleted_utc = Column(Integer, default=0)
|
||||
distinguish_level = Column(Integer, default=0)
|
||||
created_str = Column(String(255))
|
||||
stickied = Column(String)
|
||||
stickied = Column(String(255))
|
||||
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