mirror of
https://github.com/wassname/flask-security.git
synced 2026-07-13 01:00:42 +08:00
Add more secure password storage via salt value and hmac
This commit is contained in:
+1
-1
@@ -114,7 +114,7 @@ using SQLAlchemy.::
|
||||
class User(db.Model, UserMixin):
|
||||
id = db.Column(db.Integer, primary_key=True)
|
||||
email = db.Column(db.String(255), unique=True)
|
||||
password = db.Column(db.String(120))
|
||||
password = db.Column(db.String(255))
|
||||
remember_token = db.Column(db.String(255))
|
||||
active = db.Column(db.Boolean())
|
||||
authentication_token = db.Column(db.String(255))
|
||||
|
||||
Reference in New Issue
Block a user