perf: 构建工具调整
This commit is contained in:
28
build/database/lite/install/udm_auth.sql
Normal file
28
build/database/lite/install/udm_auth.sql
Normal file
@@ -0,0 +1,28 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for udm_auth
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "udm_auth";
|
||||
CREATE TABLE "udm_auth" (
|
||||
"id" integer NOT NULL,
|
||||
"imsi" text(50) NOT NULL,
|
||||
"ne_id" text(50),
|
||||
"amf" text(50),
|
||||
"status" text(50),
|
||||
"ki" text(50),
|
||||
"algo_index" text(50),
|
||||
"opc" text(50),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table udm_auth
|
||||
-- ----------------------------
|
||||
CREATE UNIQUE INDEX "uk_auth_imsi_ne"
|
||||
ON "udm_auth" (
|
||||
"imsi" ASC,
|
||||
"ne_id" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of udm_auth
|
||||
-- ----------------------------
|
||||
Reference in New Issue
Block a user