29 lines
674 B
SQL
29 lines
674 B
SQL
-- ----------------------------
|
|
-- Table structure for ue_event_amf
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS "ue_event_amf";
|
|
CREATE TABLE "ue_event_amf" (
|
|
"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_amf
|
|
-- ----------------------------
|
|
CREATE INDEX "idx_amf_type_t"
|
|
ON "ue_event_amf" (
|
|
"event_type" ASC,
|
|
"timestamp" ASC
|
|
);
|
|
|
|
-- ----------------------------
|
|
-- Records of ue_event_amf
|
|
-- ----------------------------
|