Skip to content

Commit

Permalink
even longer password...
Browse files Browse the repository at this point in the history
  • Loading branch information
Meteorix committed Apr 19, 2019
1 parent b54edc2 commit 4489f65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flaskweb/auth/models.py
Expand Up @@ -8,7 +8,7 @@ class User(db.Model):

id = db.Column(db.Integer, primary_key=True)
username = db.Column(db.String(40))
password = db.Column(db.String(60))
password = db.Column(db.String(120))
email = db.Column(db.String(40))
authenticated = db.Column(db.Boolean, default=False)
active = db.Column(db.Boolean, default=False)
Expand Down

0 comments on commit 4489f65

Please sign in to comment.