My model class looks as follows:
from google.appengine.ext import db
class SnapShotBase(db.Model):
'''
The base class from which all entity snapshots will inherit.
'''
version = db.IntegerProperty()
def __init__(self):
pass
Imagine I already have persisted instances of this class in my bigtable datastore. If I were to ADD a field to this class, would it break deserialization? Or would the new properties simply remain empty?