perf: 构建工具调整
This commit is contained in:
30
build/database/lite/install/ue_event_mme.sql
Normal file
30
build/database/lite/install/ue_event_mme.sql
Normal file
@@ -0,0 +1,30 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for ue_event_mme
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "ue_event_mme";
|
||||
CREATE TABLE "ue_event_mme" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(32),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(32),
|
||||
"timestamp" integer(20),
|
||||
"event_type" text(16),
|
||||
"event_json" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table ue_event_mme
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_mme_type_t"
|
||||
ON "ue_event_mme" (
|
||||
"event_type" ASC,
|
||||
"timestamp" ASC
|
||||
);
|
||||
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of ue_event_mme
|
||||
-- ----------------------------
|
||||
|
||||
Reference in New Issue
Block a user