Normally I do in this way: rows = db(db.membership.user_id = 2).select()
for row in rows:
new_things = row.things + [3]
row.update_record(things=new_things)
--
Normally I do in this way: rows = db(db.membership.user_id = 2).select()
for row in rows:
new_things = row.things + [3]
row.update_record(things=new_things)
--