使用GQL将列添加到现有表中?

时间:2011-12-31 19:19:46

标签: python mysql google-app-engine

我有一张表有一些条目。我想用一些默认值为该表添加一列。在mysql中我们将其作为 在mysql中:

`ALTER TABLE Example ADD status VARCHAR(60) default 1`

如何在GQL (google query language)?

中实现相同目标

1 个答案:

答案 0 :(得分:3)

由于google数据存储区是面向对象的,因此它与MySql不同。 通过向模型类添加新字段来更新现有模型后:

class Example(db.Model):    
    #other fields
    status = db.StringProperty()

example = Example()
example.status = "Happy new year"
example.put()

你实现了它。