perf: 构建工具调整
This commit is contained in:
37
build/database/lite/install/nbi_operation_log.sql
Normal file
37
build/database/lite/install/nbi_operation_log.sql
Normal file
@@ -0,0 +1,37 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for nbi_operation_log
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "nbi_operation_log";
|
||||
CREATE TABLE "nbi_operation_log" (
|
||||
"id" integer NOT NULL,
|
||||
"src_ip" text(64),
|
||||
"op_user" text(32),
|
||||
"dst_ip" text(64),
|
||||
"op_type" text(32),
|
||||
"op_proto" text(32),
|
||||
"op_params" text(255),
|
||||
"op_result" text(64),
|
||||
"op_time" text,
|
||||
"log_time" text,
|
||||
"created_at" text,
|
||||
"pri" text,
|
||||
"vendor" text,
|
||||
"ne_name" text,
|
||||
"rm_uid" text,
|
||||
"ne_type" text,
|
||||
"log_type" text,
|
||||
"user_name" text,
|
||||
"terminal_ip" text,
|
||||
"start_time" text,
|
||||
"end_time" text,
|
||||
"oper_type" text,
|
||||
"risk_level" text,
|
||||
"oper_content" text,
|
||||
"oper_result" text,
|
||||
"failure_cause" text,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of nbi_operation_log
|
||||
-- ----------------------------
|
||||
Reference in New Issue
Block a user