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