perf: 构建工具调整
This commit is contained in:
29
build/database/lite/install/sys_log_login.sql
Normal file
29
build/database/lite/install/sys_log_login.sql
Normal file
@@ -0,0 +1,29 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for sys_log_login
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "sys_log_login";
|
||||
CREATE TABLE "sys_log_login" (
|
||||
"id" integer NOT NULL,
|
||||
"user_name" text(32),
|
||||
"login_ip" text(128),
|
||||
"login_location" text(128),
|
||||
"browser" text(64),
|
||||
"os" text(64),
|
||||
"status_flag" text(1),
|
||||
"msg" text(255),
|
||||
"login_time" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table sys_job_log
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_name_group"
|
||||
ON "sys_job_log" (
|
||||
"job_name" ASC,
|
||||
"job_group" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of sys_log_login
|
||||
-- ----------------------------
|
||||
Reference in New Issue
Block a user