Unique Constraint At Data Level in GAE

Posted by Ngu Soon Hui on Stack Overflow See other posts from Stack Overflow or by Ngu Soon Hui
Published on 2010-04-13T04:30:02Z Indexed on 2010/04/13 4:33 UTC
Read the original article Hit count: 234

Filed under:

It seems that the unique constraint is not natively supported in GAE, although one can enforce unique check before putting an object to store.

But that was in January 2009, what about now? Can I specify unique constraint on a column during schema creation? i.e.

class Account(db.Model):
  name = db.StringProperty()
  email = db.StringProperty() as unique # something like this
  @classmethod
  def create(cls, name, email):
    a = Account(name=name, email=email)
    a.put()
    return a

© Stack Overflow or respective owner

Related posts about google-app-engine