aboutsummaryrefslogtreecommitdiffstats
path: root/migrations/20260202155215_like.sql
blob: 07c48668fa70ebfe0899c85807eb153e376a36dd (plain)
1
2
3
4
5
6
create table liked (
  user_ap_id text not null references profile(ap_id) on delete cascade,
  object_id text not null,
  liked_at timestamptz not null default now(),
  primary key (user_ap_id, object_id)
)