mirror of
https://github.com/certd/certd.git
synced 2026-04-14 12:30:54 +08:00
10 lines
526 B
MySQL
10 lines
526 B
MySQL
|
|
CREATE TABLE "sys_settings" (
|
||
|
|
"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
|
||
|
|
"user_id" integer NOT NULL,
|
||
|
|
"key" varchar(100) NOT NULL,
|
||
|
|
"title" varchar(100) NOT NULL,
|
||
|
|
"setting" varchar(1024),
|
||
|
|
"create_time" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP),
|
||
|
|
"update_time" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP)
|
||
|
|
);
|