Skip to content

Commit 4363097

Browse files
author
hamin
committed
password hash size update
1 parent 45c2a31 commit 4363097

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

myapp/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class User(UserMixin, db.Model):
4747
privacy = db.Column(db.Boolean, nullable=False, default=False)
4848
confirmed_on = db.Column(db.DateTime, nullable=True)
4949
inactive_reason=db.Column(db.String(240))
50-
password_hash = db.Column(db.String(128))
50+
password_hash = db.Column(db.String(255))
5151
multipleapps=db.Column(db.Boolean, nullable=False, default=False)
5252
notifyme=db.Column(db.Boolean, nullable=False, default=True)
5353
user_apps = db.Column( PickleType )

0 commit comments

Comments
 (0)