From 4b31de057c5f13d5378da2817fdf758c5bab6ed3 Mon Sep 17 00:00:00 2001 From: Matt Wright Date: Tue, 14 Aug 2012 16:21:50 -0400 Subject: [PATCH] Remove reference to --- docs/index.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/index.rst b/docs/index.rst index b11a614..6ef0253 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -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**