You can add new types to the DAL that use GAE entities. Here is what I used to create an unindexed string type:
from google.appengine.ext import db as gae db._adapter.types['noindex'] = (lambda: gae.StringProperty(multiline=True, indexed=False))
You can add new types to the DAL that use GAE entities. Here is what I used to create an unindexed string type:
from google.appengine.ext import db as gae db._adapter.types['noindex'] = (lambda: gae.StringProperty(multiline=True, indexed=False))