parent
51045fd3fa
commit
36dbc96b14
|
@ -7,15 +7,11 @@ trim_trailing_whitespace = true
|
|||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
|
||||
[.buildkite/hooks/**]
|
||||
[{.buildkite/hooks/**,*.sh,*.yml,*.yaml}]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[*.{sh,yml,yaml}]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[web/**]
|
||||
[{web/**,*.sql}]
|
||||
indent_style = space
|
||||
|
||||
[{web/package.json,web/pnpm-lock.yaml}]
|
||||
|
|
|
@ -2,9 +2,9 @@ CREATE TABLE oauth2_consent_preconfiguration (
|
|||
id INTEGER AUTO_INCREMENT,
|
||||
client_id VARCHAR(255) NOT NULL,
|
||||
subject CHAR(36) NOT NULL,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
expires_at TIMESTAMP NULL DEFAULT NULL,
|
||||
revoked BOOLEAN NOT NULL DEFAULT FALSE,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
expires_at TIMESTAMP NULL DEFAULT NULL,
|
||||
revoked BOOLEAN NOT NULL DEFAULT FALSE,
|
||||
scopes TEXT NOT NULL,
|
||||
audience TEXT NULL,
|
||||
PRIMARY KEY (id),
|
||||
|
|
|
@ -2,9 +2,9 @@ CREATE TABLE oauth2_consent_preconfiguration (
|
|||
id SERIAL,
|
||||
client_id VARCHAR(255) NOT NULL,
|
||||
subject CHAR(36) NOT NULL,
|
||||
created_at TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
created_at TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
expires_at TIMESTAMP WITH TIME ZONE NULL DEFAULT NULL,
|
||||
revoked BOOLEAN NOT NULL DEFAULT FALSE,
|
||||
revoked BOOLEAN NOT NULL DEFAULT FALSE,
|
||||
scopes TEXT NOT NULL,
|
||||
audience TEXT NULL,
|
||||
PRIMARY KEY (id),
|
||||
|
|
|
@ -19,8 +19,8 @@ CREATE TABLE oauth2_consent_session (
|
|||
form_data TEXT NOT NULL,
|
||||
requested_scopes TEXT NOT NULL,
|
||||
granted_scopes TEXT NOT NULL,
|
||||
requested_audience TEXT NULL DEFAULT '',
|
||||
granted_audience TEXT NULL DEFAULT '',
|
||||
requested_audience TEXT NULL DEFAULT '',
|
||||
granted_audience TEXT NULL DEFAULT '',
|
||||
PRIMARY KEY (id),
|
||||
CONSTRAINT oauth2_consent_session_subject_fkey
|
||||
FOREIGN KEY(subject)
|
||||
|
|
|
@ -2,9 +2,9 @@ CREATE TABLE oauth2_consent_preconfiguration (
|
|||
id INTEGER,
|
||||
client_id VARCHAR(255) NOT NULL,
|
||||
subject CHAR(36) NOT NULL,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
expires_at TIMESTAMP NULL DEFAULT NULL,
|
||||
revoked BOOLEAN NOT NULL DEFAULT FALSE,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
expires_at TIMESTAMP NULL DEFAULT NULL,
|
||||
revoked BOOLEAN NOT NULL DEFAULT FALSE,
|
||||
scopes TEXT NOT NULL,
|
||||
audience TEXT NULL,
|
||||
PRIMARY KEY (id),
|
||||
|
|
Loading…
Reference in New Issue