Files
mach_examples/08_todo_events/activity/get_activities.sql
2026-03-29 20:14:24 -05:00

6 lines
110 B
SQL

select action, title, created_at
from activity
where user_id = {{user_id}}
order by created_at desc
limit 50;