feat: 新增第三方登录认证和管理
This commit is contained in:
32
build/database/lite/upgrade/upg_sys_login_source.sql
Normal file
32
build/database/lite/upgrade/upg_sys_login_source.sql
Normal file
@@ -0,0 +1,32 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for sys_login_source
|
||||
-- ----------------------------
|
||||
CREATE TABLE IF NOT EXISTS "sys_login_source" (
|
||||
"id" integer NOT NULL,
|
||||
"uid" text(32),
|
||||
"type" text(32),
|
||||
"name" text(64),
|
||||
"icon" text(255),
|
||||
"active_flag" text(1),
|
||||
"sync_flag" text(1),
|
||||
"config" text,
|
||||
"create_by" text(64),
|
||||
"create_time" integer,
|
||||
"update_by" text(64),
|
||||
"update_time" integer,
|
||||
"remark" text(500),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table sys_login_source
|
||||
-- ----------------------------
|
||||
CREATE INDEX IF NOT EXISTS "idx_ls_type_name"
|
||||
ON "sys_login_source" (
|
||||
"type" ASC,
|
||||
"name" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of sys_login_source
|
||||
-- ----------------------------
|
||||
Reference in New Issue
Block a user