From 85488014c6bb72fda29363ce0698e5d5f27dcc04 Mon Sep 17 00:00:00 2001 From: "fredsa@google.com" Date: Wed, 10 Oct 2012 02:04:05 +0000 Subject: [PATCH] set guestbook StringProperty to be indexed=False git-svn-id: http://google-app-engine-samples.googlecode.com/svn/trunk@164 99225164-8649-0410-878b-2ba91e509939 --- python27/guestbook/guestbook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python27/guestbook/guestbook.py b/python27/guestbook/guestbook.py index 9a8e219..933dc5f 100644 --- a/python27/guestbook/guestbook.py +++ b/python27/guestbook/guestbook.py @@ -19,7 +19,7 @@ jinja_environment = jinja2.Environment( class Greeting(ndb.Model): author = ndb.UserProperty() - content = ndb.StringProperty() + content = ndb.StringProperty(indexed=False) date = ndb.DateTimeProperty(auto_now_add=True) class MainPage(webapp2.RequestHandler): -- 2.11.4.GIT