Auditing

Sometimes it can be useful to store in the database the moments in which the data is added, edited or deleted. Asyncher can manage this information for you.

All you have to do is simply add these fields to the database on your server, based on what you need:

  • created_at: datetime: Used when the data has been created (i.e. when the data arrives at Asyncher with is_new set to true)

  • updated_at: datetime: Used when the data has been updated (i.e. when the data arrives at Asyncher with updated set to true)

  • deleted_at: datetime: Used when the data has been deleted (i.e. when the data arrives at Asyncher with deleted set to true)

The choice of the names of these fields is totally free. See the configuration here.

Last updated