Example #1
0
 class All(model.Model):
     s = model.StringProperty()
     i = model.IntegerProperty()
     f = model.FloatProperty()
     t = model.TextProperty()
     b = model.BlobProperty()
     k = model.KeyProperty()
Example #2
0
 class MyModel(model.Model):
     t = model.TextProperty()
     b = model.BlobProperty()
Example #3
0
 class Demo(model.Model):
     bytes = model.BlobProperty()
     text = model.TextProperty()
Example #4
0
 class MyModel(model.Model):
   b = model.BlobProperty(indexed=True)