mirror of
https://github.com/usememos/memos.git
synced 2024-12-22 02:31:46 +03:00
1d7627dd72
* chore: upgrade version `0.13.0` * chore: update
7 lines
175 B
SQL
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)
|
|
); |