Fix SQL storage

This commit is contained in:
Joel Speed 2018-01-30 11:19:08 +00:00
parent b9b315dd64
commit 80995dff9b
No known key found for this signature in database
GPG key ID: 6E80578D6751DEFB
2 changed files with 13 additions and 15 deletions

View file

@ -330,7 +330,7 @@ func getRefresh(q querier, id string) (storage.RefreshToken, error) {
claims_user_id, claims_username, claims_preferred_username, claims_user_id, claims_username, claims_preferred_username,
claims_email, claims_email_verified, claims_email, claims_email_verified,
claims_groups, claims_groups,
connector_id, connector_data, connector_id,
token, created_at, last_used token, created_at, last_used
from refresh_token where id = $1; from refresh_token where id = $1;
`, id)) `, id))
@ -685,7 +685,7 @@ func (c *conn) UpdateOfflineSessions(userID string, connID string, updater func(
_, err = tx.Exec(` _, err = tx.Exec(`
update offline_session update offline_session
set set
refresh = $1 refresh = $1,
connector_data = $2 connector_data = $2
where user_id = $3 AND conn_id = $4; where user_id = $3 AND conn_id = $4;
`, `,

View file

@ -100,7 +100,6 @@ var migrations = []migration{
claims_groups bytea not null, -- JSON array of strings claims_groups bytea not null, -- JSON array of strings
connector_id text not null, connector_id text not null,
connector_data bytea,
expiry timestamptz not null expiry timestamptz not null
);`, );`,
@ -119,7 +118,6 @@ var migrations = []migration{
claims_groups bytea not null, -- JSON array of strings claims_groups bytea not null, -- JSON array of strings
connector_id text not null, connector_id text not null,
connector_data bytea,
expiry timestamptz not null expiry timestamptz not null
);`, );`,
@ -136,8 +134,7 @@ var migrations = []migration{
claims_email_verified boolean not null, claims_email_verified boolean not null,
claims_groups bytea not null, -- JSON array of strings claims_groups bytea not null, -- JSON array of strings
connector_id text not null, connector_id text not null
connector_data bytea
);`, );`,
` `
create table password ( create table password (
@ -175,6 +172,7 @@ var migrations = []migration{
user_id text not null, user_id text not null,
conn_id text not null, conn_id text not null,
refresh bytea not null, refresh bytea not null,
connector_data bytea not null,
PRIMARY KEY (user_id, conn_id) PRIMARY KEY (user_id, conn_id)
);`, );`,
}, },