updated syntax of default values to allow file to run inside HSQLDB GUI (it ran fine on the back end for some reason), addresses #545
parent
3a200e9567
commit
ea1f52cdf9
|
@ -75,10 +75,10 @@ CREATE TABLE IF NOT EXISTS client_details (
|
||||||
id BIGINT GENERATED BY DEFAULT AS IDENTITY(START WITH 1) PRIMARY KEY,
|
id BIGINT GENERATED BY DEFAULT AS IDENTITY(START WITH 1) PRIMARY KEY,
|
||||||
|
|
||||||
client_description VARCHAR(1024),
|
client_description VARCHAR(1024),
|
||||||
reuse_refresh_tokens BOOLEAN NOT NULL DEFAULT true,
|
reuse_refresh_tokens BOOLEAN DEFAULT true NOT NULL,
|
||||||
dynamically_registered BOOLEAN NOT NULL DEFAULT false,
|
dynamically_registered BOOLEAN DEFAULT false NOT NULL,
|
||||||
allow_introspection BOOLEAN NOT NULL DEFAULT false,
|
allow_introspection BOOLEAN DEFAULT false NOT NULL,
|
||||||
id_token_validity_seconds BIGINT NOT NULL DEFAULT 600,
|
id_token_validity_seconds BIGINT DEFAULT 600 NOT NULL,
|
||||||
|
|
||||||
client_id VARCHAR(256),
|
client_id VARCHAR(256),
|
||||||
client_secret VARCHAR(2048),
|
client_secret VARCHAR(2048),
|
||||||
|
@ -165,9 +165,9 @@ CREATE TABLE IF NOT EXISTS system_scope (
|
||||||
scope VARCHAR(256) NOT NULL,
|
scope VARCHAR(256) NOT NULL,
|
||||||
description VARCHAR(4096),
|
description VARCHAR(4096),
|
||||||
icon VARCHAR(256),
|
icon VARCHAR(256),
|
||||||
allow_dyn_reg BOOLEAN NOT NULL DEFAULT false,
|
allow_dyn_reg BOOLEAN DEFAULT false NOT NULL,
|
||||||
default_scope BOOLEAN NOT NULL DEFAULT false,
|
default_scope BOOLEAN DEFAULT false NOT NULL,
|
||||||
structured BOOLEAN NOT NULL DEFAULT false,
|
structured BOOLEAN DEFAULT false NOT NULL,
|
||||||
structured_param_description VARCHAR(256),
|
structured_param_description VARCHAR(256),
|
||||||
UNIQUE (scope)
|
UNIQUE (scope)
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue