perf: 构建工具调整

This commit is contained in:
TsMask
2025-03-19 17:42:31 +08:00
parent 0838ac49e7
commit d987553af5
284 changed files with 25 additions and 1089 deletions

View 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
-- ----------------------------