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