I have a schema with an Account table that has an :updated_at attribute. I want to update this time-stamp whenever the user does any activity, regardless of whether he has actually updated anything in the Account table. Can I accomplish this simply with
account = Account.find(id) account.update In other words, will the update() method update :updated_at even if nothing else in the record has been touched? -- You received this message because you are subscribed to the Google Groups "DataMapper" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/datamapper?hl=en.
