52 lines
1.1 KiB
SQL
52 lines
1.1 KiB
SQL
-- ----------------------------
|
|
-- Table structure for udm_sub
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS "udm_sub";
|
|
CREATE TABLE "udm_sub" (
|
|
"id" integer NOT NULL,
|
|
"imsi" text(50) NOT NULL,
|
|
"msisdn" text(50),
|
|
"ne_id" text(50),
|
|
"am_dat" text(1500),
|
|
"ambr" text(50),
|
|
"nssai" text(50),
|
|
"rat" text(50),
|
|
"arfb" text(50),
|
|
"sar" text(50),
|
|
"cn_type" text(50),
|
|
"rfsp_index" text(50),
|
|
"reg_timer" text(50),
|
|
"ue_usage_type" text(50),
|
|
"active_time" text(50),
|
|
"mico" text(50),
|
|
"odb_ps" text(50),
|
|
"group_id" text(50),
|
|
"eps_dat" text(1500),
|
|
"eps_flag" text(50),
|
|
"eps_odb" text(50),
|
|
"hplmn_odb" text(50),
|
|
"ard" text(50),
|
|
"epstpl" text(50),
|
|
"context_id" text(50),
|
|
"apn_mum" text(50),
|
|
"apn_context" text(50),
|
|
"static_ip" text(50),
|
|
"sm_data" text(1500),
|
|
"smf_sel" text(50),
|
|
"cag" text(50),
|
|
PRIMARY KEY ("id")
|
|
);
|
|
|
|
-- ----------------------------
|
|
-- Indexes structure for table udm_sub
|
|
-- ----------------------------
|
|
CREATE UNIQUE INDEX "uk_sub_imsi_ne"
|
|
ON "udm_sub" (
|
|
"imsi" ASC,
|
|
"ne_id" ASC
|
|
);
|
|
|
|
-- ----------------------------
|
|
-- Records of udm_sub
|
|
-- ----------------------------
|