aboutsummaryrefslogtreecommitdiffstats
path: root/migrations/20260202155215_like.sql
diff options
context:
space:
mode:
Diffstat (limited to 'migrations/20260202155215_like.sql')
-rw-r--r--migrations/20260202155215_like.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/migrations/20260202155215_like.sql b/migrations/20260202155215_like.sql
new file mode 100644
index 0000000..07c4866
--- /dev/null
+++ b/migrations/20260202155215_like.sql
@@ -0,0 +1,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)
+)