ssteffl
Results
3
comments of
ssteffl
i wish there was a "force" flag for .save() on an instance, that just set the updatedAt flag even if nothing was changed. Im trying to use updatedAt field as...
ok cool. that seems to work. im just doing: ``` existingRecord.changed('updatedAt', true); return existingRecord.update(data, {transaction: txn}); ``` and it seems to be setting the updatedAt correctly. Thanks!