You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of #3993 - Turbo87:simplify-trigger, r=locks
database: Simplify `trigger_versions_set_updated_at` trigger on the `versions` table
The only mutable columns in this table are `yanked` and `downloads`, but the trigger should specifically not be used when the `downloads` column changes. That means we're only left with the `yanked` column and can be more specific in the trigger condition.
This unblocks #3992, but also generally simplifies the table trigger.
0 commit comments