30 lines
654 B
SQL
30 lines
654 B
SQL
-- ----------------------------
|
|
-- Table structure for udm_auth
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS "udm_auth";
|
|
CREATE TABLE "udm_auth" (
|
|
"id" integer NOT NULL,
|
|
"create_time" integer,
|
|
"ne_id" text(50),
|
|
"imsi" text(50) NOT NULL,
|
|
"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
|
|
-- ----------------------------
|