Files
mach_examples/06_todo_events/activity/get_activities.sql

6 lines
110 B
MySQL
Raw Normal View History

2025-07-24 12:46:01 -05:00
select action, title, created_at
from activity
where user_id = {{user_id}}
order by created_at desc
limit 50;