feat: UDM用户数据添加创建时间字段
This commit is contained in:
25
build/database/lite/upgrade/upg_udm_voip.sql
Normal file
25
build/database/lite/upgrade/upg_udm_voip.sql
Normal file
@@ -0,0 +1,25 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for udm_voip
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "udm_voip";
|
||||
CREATE TABLE "udm_voip" (
|
||||
"id" integer NOT NULL,
|
||||
"create_time" integer,
|
||||
"ne_id" text(50),
|
||||
"username" text(50),
|
||||
"password" text(128),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table udm_voip
|
||||
-- ----------------------------
|
||||
CREATE UNIQUE INDEX "uk_voip_user_ne"
|
||||
ON "udm_voip" (
|
||||
"username" ASC,
|
||||
"ne_id" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of udm_voip
|
||||
-- ----------------------------
|
||||
Reference in New Issue
Block a user