Is there an existing issue for this?
What happened?
Problem
In main, only the tickets table has an updated_at trigger.
The teams and users tables are missing it, causing inconsistent
timestamp tracking across the database.
Current Behavior
- tickets → has updated_at trigger ✓
- teams → missing updated_at trigger ✗
- users → missing updated_at trigger ✗
Expected Behavior
All three tables should automatically update the updated_at
column whenever a row is modified.
Fix
Add update_updated_at_column() trigger to both
teams and users tables.
Impact
Low — not breaking anything but causes inconsistent
timestamp data across tables.
Record
Is there an existing issue for this?
What happened?
Problem
In main, only the tickets table has an updated_at trigger.
The teams and users tables are missing it, causing inconsistent
timestamp tracking across the database.
Current Behavior
Expected Behavior
All three tables should automatically update the updated_at
column whenever a row is modified.
Fix
Add update_updated_at_column() trigger to both
teams and users tables.
Impact
Low — not breaking anything but causes inconsistent
timestamp data across tables.
Record