Files
be.ems/build/database/lite/install/udm_extend.sql
2025-03-19 17:42:31 +08:00

26 lines
577 B
SQL

-- ----------------------------
-- Table structure for udm_extend
-- ----------------------------
DROP TABLE IF EXISTS "udm_extend";
CREATE TABLE "udm_extend" (
"id" integer NOT NULL,
"imsi" text(50) NOT NULL,
"msisdn" text(50),
"ne_id" text(50),
"remark" text(500),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table udm_extend
-- ----------------------------
CREATE UNIQUE INDEX "imsi_ne"
ON "udm_extend" (
"imsi" ASC,
"ne_id" ASC
);
-- ----------------------------
-- Records of udm_extend
-- ----------------------------