Fix db error
Comment last_seen. Is throwing error.
This commit is contained in:
parent
0285135d4f
commit
b410e46f69
@ -22,7 +22,7 @@ class User(UserMixin, db.Model):
|
||||
id = db.Column(db.Integer, primary_key=True)
|
||||
username = db.Column(db.String(64), index=True, unique=True)
|
||||
password_hash = db.Column(db.String(128))
|
||||
last_seen = db.Column(db.DateTime, default=datetime.utcnow)
|
||||
#last_seen = db.Column(db.DateTime, default=datetime.utcnow)
|
||||
posts = db.relationship('Post', backref='author', lazy='dynamic')
|
||||
|
||||
def __repr__(self):
|
||||
@ -169,4 +169,4 @@ class Post(db.Model):
|
||||
|
||||
def __repr__(self):
|
||||
return '<Post {}>'.format(self.body)
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user