Files
memos/store/migration/sqlite/prod/0.13/00__memo_relation.sql
2024-08-16 08:07:30 +08:00

7 lines
175 B
SQL

-- memo_relation
CREATE TABLE memo_relation (
memo_id INTEGER NOT NULL,
related_memo_id INTEGER NOT NULL,
type TEXT NOT NULL,
UNIQUE(memo_id, related_memo_id, type)
);