Skip to content

Commit

Permalink
Update models.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Abbey authored May 3, 2018
1 parent 9422178 commit b13ca60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __repr__(self):
class Context(db.Model):
__tablename__ = 'context_table'
uid = db.Column(db.String(64), primary_key=True)
pid=db.Column(db.String(200),primary_key=True)
pid=db.Column(db.String(64),primary_key=True)
urls = db.Column(db.String(200))
isvideo = db.Column(db.Integer, default=0) # 0=no,1=yes
poster = db.Column(db.String(200))
Expand Down

0 comments on commit b13ca60

Please sign in to comment.