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.
9 lines
262 B
MySQL
9 lines
262 B
MySQL
12 months ago
|
-- user_setting
|
||
|
CREATE TABLE user_setting (
|
||
|
user_id INTEGER NOT NULL,
|
||
|
key TEXT NOT NULL,
|
||
|
value TEXT NOT NULL,
|
||
|
FOREIGN KEY(user_id) REFERENCES user(id) ON DELETE CASCADE
|
||
|
);
|
||
|
|
||
|
CREATE UNIQUE INDEX user_setting_key_user_id_index ON user_setting(key, user_id);
|