add: post likes page

fix: requests pkey
This commit is contained in:
trisua 2025-05-14 19:54:53 -04:00
parent bbb629336f
commit b63df2cb31
11 changed files with 274 additions and 14 deletions

View file

@ -3,5 +3,6 @@ CREATE TABLE IF NOT EXISTS requests (
created BIGINT NOT NULL,
owner BIGINT NOT NULL,
action_type TEXT NOT NULL,
linked_asset BIGINT NOT NULL
linked_asset BIGINT NOT NULL,
PRIMARY KEY (id, owner, linked_asset)
)