From cfd0efb91db14a05eff42751d75bba8260833c51 Mon Sep 17 00:00:00 2001 From: Matt Wright Date: Thu, 3 Oct 2013 10:10:06 -0400 Subject: [PATCH] Fix #167 --- docs/quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 2e21d37..aabb5f3 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -185,7 +185,7 @@ possible using Peewee: db = Database(app) class Role(db.Model, RoleMixin): - name = TextField(unique=True) + name = CharField(unique=True) description = TextField(null=True) class User(db.Model, UserMixin):