30 lines
697 B
SQL
30 lines
697 B
SQL
-- ----------------------------
|
|
-- 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
|
|
-- ----------------------------
|