You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
361 B
8 lines
361 B
CREATE TABLE IF NOT EXISTS settings (
|
|
key TEXT PRIMARY KEY,
|
|
value TEXT NOT NULL DEFAULT ''
|
|
);
|
|
|
|
INSERT OR IGNORE INTO settings (key, value) VALUES ('site_name', 'Person Home');
|
|
INSERT OR IGNORE INTO settings (key, value) VALUES ('home_title', '我的项目');
|
|
INSERT OR IGNORE INTO settings (key, value) VALUES ('home_subtitle', '个人项目集合');
|
|
|