perf: 构建工具调整
This commit is contained in:
25
build/database/lite/install/sys_log_operate.sql
Normal file
25
build/database/lite/install/sys_log_operate.sql
Normal file
@@ -0,0 +1,25 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for sys_log_operate
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "sys_log_operate";
|
||||
CREATE TABLE "sys_log_operate" (
|
||||
"id" integer NOT NULL,
|
||||
"title" text(64),
|
||||
"business_type" text(1),
|
||||
"opera_url" text(200),
|
||||
"opera_url_method" text(10),
|
||||
"opera_ip" text(128),
|
||||
"opera_location" text(128),
|
||||
"opera_param" text(2000),
|
||||
"opera_msg" text(2000),
|
||||
"opera_method" text(128),
|
||||
"opera_by" text(64),
|
||||
"opera_time" integer(20),
|
||||
"status_flag" text(1),
|
||||
"cost_time" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of sys_log_operate
|
||||
-- ----------------------------
|
||||
Reference in New Issue
Block a user