I have an existing schema:
class Example (db.Model) :
row_num = db.IntegerProperty(required=True)
updated = db.IntegerProperty()
...
...
I have now updated this to :
class Example (db.Model) :
row_num = db.IntegerProperty(required=True)
updated = db.IntegerProperty(default=0)
...
...
However, there are over 2 million entities in the Datastore which do not have update = 0 set by default.
What is the easiest way to do this? Can this by done by a single command from the admin terminal?