Open
Description
Event rule
- Removing an event rule escalation causes the
changed_at
flag to be updated for all other escalations. - Adding/removing/updating a recipient causes the escalation and all its recipients to have a new
changed_at
.
The changed_at
column
- It should be added at a central point (Database.php) to avoid future errors.
- It should be precise to milliseconds in order to avoid a data race (daemon side), e.g. if two users update the data at the same time.
- (fixed with Let
On_ASSEMBLE_INSERT / ON_ASSEMBLE_UPDATE
events handle thechanged_at
column #227)