memos/store/sqlite/migration/prod/0.13/00__memo_relation.sql

7 lines
175 B
MySQL
Raw Normal View History

-- 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)
);