Add oidc.name and oidc.appId fields

This commit is contained in:
Johannes Zellner
2023-03-23 09:27:40 +01:00
parent eae390a387
commit 5d903451fa
7 changed files with 77 additions and 22 deletions

View File

@@ -316,6 +316,8 @@ CREATE TABLE IF NOT EXISTS appLinks(
CREATE TABLE IF NOT EXISTS oidcClients(
id VARCHAR(128) NOT NULL UNIQUE,
secret VARCHAR(128) DEFAULT "",
appId VARCHAR(128) DEFAULT "",
name VARCHAR(128) DEFAULT "",
loginRedirectUri VARCHAR(256) DEFAULT "",
logoutRedirectUri VARCHAR(256) DEFAULT "",
PRIMARY KEY(id));