mirror of
https://github.com/usememos/memos.git
synced 2025-02-24 15:17:52 +01:00
10 lines
395 B
MySQL
10 lines
395 B
MySQL
|
-- memo_resource
|
||
|
CREATE TABLE memo_resource (
|
||
|
memo_id INTEGER NOT NULL,
|
||
|
resource_id INTEGER NOT NULL,
|
||
|
created_ts BIGINT NOT NULL DEFAULT (strftime('%s', 'now')),
|
||
|
updated_ts BIGINT NOT NULL DEFAULT (strftime('%s', 'now')),
|
||
|
FOREIGN KEY(memo_id) REFERENCES memo(id) ON DELETE CASCADE,
|
||
|
FOREIGN KEY(resource_id) REFERENCES resource(id) ON DELETE CASCADE,
|
||
|
UNIQUE(memo_id, resource_id)
|
||
|
);
|