Fix SQL storage
This commit is contained in:
@@ -90,18 +90,17 @@ var migrations = []migration{
|
||||
nonce text not null,
|
||||
state text not null,
|
||||
force_approval_prompt boolean not null,
|
||||
|
||||
|
||||
logged_in boolean not null,
|
||||
|
||||
|
||||
claims_user_id text not null,
|
||||
claims_username text not null,
|
||||
claims_email text not null,
|
||||
claims_email_verified boolean not null,
|
||||
claims_groups bytea not null, -- JSON array of strings
|
||||
|
||||
|
||||
connector_id text not null,
|
||||
connector_data bytea,
|
||||
|
||||
|
||||
expiry timestamptz not null
|
||||
);`,
|
||||
`
|
||||
@@ -111,16 +110,15 @@ var migrations = []migration{
|
||||
scopes bytea not null, -- JSON array of strings
|
||||
nonce text not null,
|
||||
redirect_uri text not null,
|
||||
|
||||
|
||||
claims_user_id text not null,
|
||||
claims_username text not null,
|
||||
claims_email text not null,
|
||||
claims_email_verified boolean not null,
|
||||
claims_groups bytea not null, -- JSON array of strings
|
||||
|
||||
|
||||
connector_id text not null,
|
||||
connector_data bytea,
|
||||
|
||||
|
||||
expiry timestamptz not null
|
||||
);`,
|
||||
`
|
||||
@@ -129,15 +127,14 @@ var migrations = []migration{
|
||||
client_id text not null,
|
||||
scopes bytea not null, -- JSON array of strings
|
||||
nonce text not null,
|
||||
|
||||
|
||||
claims_user_id text not null,
|
||||
claims_username text not null,
|
||||
claims_email text not null,
|
||||
claims_email_verified boolean not null,
|
||||
claims_groups bytea not null, -- JSON array of strings
|
||||
|
||||
connector_id text not null,
|
||||
connector_data bytea
|
||||
|
||||
connector_id text not null
|
||||
);`,
|
||||
`
|
||||
create table password (
|
||||
@@ -175,6 +172,7 @@ var migrations = []migration{
|
||||
user_id text not null,
|
||||
conn_id text not null,
|
||||
refresh bytea not null,
|
||||
connector_data bytea not null,
|
||||
PRIMARY KEY (user_id, conn_id)
|
||||
);`,
|
||||
},
|
||||
|
Reference in New Issue
Block a user