26 lines
662 B
SQL
26 lines
662 B
SQL
-- ----------------------------
|
|
-- 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
|
|
-- ----------------------------
|