mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
395 B
SQL
10 lines
395 B
SQL
-- 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)
|
|
); |