Google App Engine: Update model definitons?
Posted
by Rosarch
on Stack Overflow
See other posts from Stack Overflow
or by Rosarch
Published on 2010-06-12T17:11:57Z
Indexed on
2010/06/12
17:12 UTC
Read the original article
Hit count: 185
python
|google-app-engine
I recently updated one of my models by adding a db.ListProperty()
:
class DependencyArcTail(db.Model):
courses = db.ListProperty(db.Key)
''' newly added '''
forwardLinks = db.ListProperty(db.Key)
However, I can't seem to get this to be reflected in the SDK dashboard. I cleared the datastore and reloaded it. Then I ran the procedures that create the DependencyArcTail objects. However, forwardLinks
still doesn't show up as an attribute in the SDK dashboard. What's happening?
© Stack Overflow or respective owner