perf: 构建工具调整
This commit is contained in:
25
build/database/lite/install/udm_extend.sql
Normal file
25
build/database/lite/install/udm_extend.sql
Normal file
@@ -0,0 +1,25 @@
|
||||
-- ----------------------------
|
||||
-- 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
|
||||
-- ----------------------------
|
||||
Reference in New Issue
Block a user