mirror of
https://github.com/usememos/memos.git
synced 2024-11-17 12:17:39 +08:00
848ecd99ee
chore: format sql
10 lines
No EOL
395 B
SQL
10 lines
No EOL
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)
|
|
); |