db/fix typo
This commit is contained in:
parent
2f009c3b14
commit
e361d8cb43
1 changed files with 4 additions and 4 deletions
|
@ -7,8 +7,8 @@ class Toot(db.Model):
|
|||
url = db.Column(db.Text)
|
||||
created_at = db.Column(db.DateTime)
|
||||
edited_at = db.Column(db.DateTime)
|
||||
in_replay_to_id = db.Column(db.Integer)
|
||||
in_replay_to_account_id = db.Column(db.Integer)
|
||||
in_reply_to_id = db.Column(db.Integer)
|
||||
in_reply_to_account_id = db.Column(db.Integer)
|
||||
reblog_myself = db.Column(db.Boolean)
|
||||
reblog_id = db.Column(db.Integer)
|
||||
content = db.Column(db.Text)
|
||||
|
@ -32,8 +32,8 @@ class Reblog(db.Model):
|
|||
url = db.Column(db.Text)
|
||||
created_at = db.Column(db.DateTime)
|
||||
edited_at = db.Column(db.DateTime)
|
||||
in_replay_to_id = db.Column(db.Integer)
|
||||
in_replay_to_account_id = db.Column(db.Integer)
|
||||
in_reply_to_id = db.Column(db.Integer)
|
||||
in_reply_to_account_id = db.Column(db.Integer)
|
||||
content = db.Column(db.Text)
|
||||
media_list = db.Column(db.Text)
|
||||
emoji_list = db.Column(db.Text)
|
||||
|
|
Loading…
Reference in a new issue