mirror of
https://github.com/wassname/flask-security.git
synced 2026-07-15 01:10:54 +08:00
Remove reference to remember_token in docs
This commit is contained in:
@@ -109,7 +109,6 @@ using SQLAlchemy.::
|
||||
id = db.Column(db.Integer, primary_key=True)
|
||||
email = db.Column(db.String(255), unique=True)
|
||||
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))
|
||||
roles = db.relationship('Role', secondary=roles_users,
|
||||
@@ -159,7 +158,6 @@ and `Role` model should include the following fields:
|
||||
* id
|
||||
* email
|
||||
* password
|
||||
* remember_token
|
||||
* active
|
||||
* authentication_token
|
||||
|
||||
|
||||
Reference in New Issue
Block a user