Is there a way to update all computed fields via appadmin's db interface?
On Saturday, July 28, 2012 2:45:28 PM UTC-7, Massimo Di Pierro wrote: > > It depends. If it is computed based on other fields, you should do an > update of those fields. Else you can update it by expliticly calling the > update method: > > db.thing[id].update_record(field=db.thing.field.compute({})) > > On Saturday, 28 July 2012 13:40:52 UTC-5, Jonathan Lundell wrote: >> >> If I add a computed field to an existing table, what's a good way to get >> it updated? Do a dummy (no-change) update of another field? > > --