Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
OpenID-Connect-Java-Spring-Server
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Perun
Perun ProxyIdP
v1
OpenID-Connect-Java-Spring-Server
Commits
64e9f377
Verified
Commit
64e9f377
authored
1 year ago
by
Dominik Frantisek Bucik
Browse files
Options
Downloads
Patches
Plain Diff
fix:
Update DB scripts to contain all modifications
parent
9dd73389
No related branches found
No related tags found
1 merge request
!381
fix: 🐛 Fix cleanup savedUserAuth
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
perun-oidc-server-webapp/src/main/resources/db/psql/psql_database_tables.sql
+13
-1
13 additions, 1 deletion
...ebapp/src/main/resources/db/psql/psql_database_tables.sql
with
13 additions
and
1 deletion
perun-oidc-server-webapp/src/main/resources/db/psql/psql_database_tables.sql
+
13
−
1
View file @
64e9f377
...
...
@@ -173,6 +173,9 @@ CREATE TABLE IF NOT EXISTS client_details (
code_challenge_method
VARCHAR
(
256
),
parent_client_id
BIGINT
DEFAULT
NULL
,
accepted_tos
BOOLEAN
DEFAULT
false
,
jurisdiction
VARCHAR
(
256
)
DEFAULT
NULL
,
UNIQUE
(
client_id
)
);
...
...
@@ -289,7 +292,8 @@ CREATE TABLE IF NOT EXISTS device_code (
expiration
TIMESTAMP
NULL
,
client_id
VARCHAR
(
256
),
approved
BOOLEAN
,
auth_holder_id
BIGINT
auth_holder_id
BIGINT
,
recorded_error
TEXT
DEFAULT
NULL
);
CREATE
TABLE
IF
NOT
EXISTS
device_code_scope
(
...
...
@@ -303,6 +307,14 @@ CREATE TABLE IF NOT EXISTS device_code_request_parameter (
val
VARCHAR
(
2048
)
);
CREATE
TABLE
shedlock
(
name
VARCHAR
(
64
)
PRIMARY
KEY
,
lock_until
TIMESTAMP
(
3
)
NULL
,
locked_at
TIMESTAMP
(
3
)
NULL
,
locked_by
VARCHAR
(
255
)
);
alter
table
access_token
add
constraint
access_token_authentication_holder_id_fk
foreign
key
(
auth_holder_id
)
references
authentication_holder
(
id
)
...
...
This diff is collapsed.
Click to expand it.
Perun-GitLab Service Account
@9045464
mentioned in commit
5538a68c
·
1 year ago
mentioned in commit
5538a68c
mentioned in commit 5538a68cde7fed85af94bac7dd65c0bb1e9ca55a
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment