🚧 Improvements

This commit is contained in:
Andreas Dinauer 2026-04-06 12:17:30 +02:00
parent 6444931d73
commit 421d2a7d95

View File

@ -6,9 +6,6 @@ create table realm
realm_name varchar(255)
);
alter table realm
owner to postgres;
create table audience_strategy
(
id varchar(255) not null primary key,
@ -18,9 +15,6 @@ create table audience_strategy
value varchar(255)
);
alter table audience_strategy
owner to postgres;
create table client
(
id varchar(255) not null primary key,
@ -39,9 +33,6 @@ create table allowed_grants
)
);
alter table allowed_grants
owner to postgres;
create table allowed_redirect_uri
(
client_id varchar(255) not null
@ -49,9 +40,6 @@ create table allowed_redirect_uri
redirect_uri varchar(255)
);
alter table allowed_redirect_uri
owner to postgres;
create table client_permission
(
client_id varchar(255) not null
@ -64,9 +52,6 @@ create table client_permission
)
);
alter table client_permission
owner to postgres;
create table keypair
(
alg varchar(255),
@ -84,9 +69,6 @@ create table keypair
privatekey bytea
);
alter table keypair
owner to postgres;
create table role
(
id varchar(255) not null
@ -98,9 +80,6 @@ create table role
role_name varchar(255)
);
alter table role
owner to postgres;
create table user_regular
(
account_password varchar(255),
@ -119,9 +98,6 @@ create table user_regular
)
);
alter table user_regular
owner to postgres;
create table assignment
(
id varchar(255) not null
@ -134,9 +110,6 @@ create table assignment
references user_regular
);
alter table assignment
owner to postgres;
create table code
(
expiresat timestamp(6) with time zone,
@ -154,15 +127,9 @@ create table code
on delete cascade
);
alter table code
owner to postgres;
create table user_super
(
id varchar(255) not null
primary key,
password varchar(255)
);
alter table user_super
owner to postgres;
);