Remove reference to

This commit is contained in:
Matt Wright
2012-08-14 16:21:50 -04:00
parent 68b0410d1b
commit 4b31de057c
-2
View File
@@ -110,7 +110,6 @@ using SQLAlchemy.::
email = db.Column(db.String(255), unique=True)
password = db.Column(db.String(255))
active = db.Column(db.Boolean())
authentication_token = db.Column(db.String(255))
roles = db.relationship('Role', secondary=roles_users,
backref=db.backref('users', lazy='dynamic'))
@@ -159,7 +158,6 @@ and `Role` model should include the following fields:
* email
* password
* active
* authentication_token
**Role**