Sync database changes across all three platforms

pull/848/merge
Justin Richer 2015-06-23 20:31:28 -04:00
parent 84b595ea6f
commit 445099fc74
3 changed files with 5 additions and 4 deletions

View File

@ -49,8 +49,7 @@ CREATE TABLE IF NOT EXISTS authentication_holder (
user_auth_id BIGINT,
approved BOOLEAN,
redirect_uri VARCHAR(2048),
client_id VARCHAR(256),
client_id VARCHAR(256)
);
CREATE TABLE IF NOT EXISTS authentication_holder_authority (

View File

@ -49,7 +49,7 @@ CREATE TABLE IF NOT EXISTS authentication_holder (
user_auth_id BIGINT,
approved BOOLEAN,
redirect_uri VARCHAR(2048),
client_id VARCHAR(256)
client_id VARCHAR(256)
);
CREATE TABLE IF NOT EXISTS authentication_holder_authority (

View File

@ -148,6 +148,7 @@ CREATE TABLE IF NOT EXISTS client_details (
tos_uri VARCHAR(2048),
jwks_uri VARCHAR(2048),
jwks VARCHAR(8192),
sector_identifier_uri VARCHAR(2048),
request_object_signing_alg VARCHAR(256),
@ -251,7 +252,8 @@ CREATE TABLE IF NOT EXISTS user_info (
phone_number_verified BOOLEAN,
address_id VARCHAR(256),
updated_time VARCHAR(256),
birthdate VARCHAR(256)
birthdate VARCHAR(256),
src VARCHAR(4096)
);
CREATE TABLE IF NOT EXISTS whitelisted_site (