You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
338 B
10 lines
338 B
CREATE TABLE sso_auth (
|
|
state text NOT NULL PRIMARY KEY,
|
|
client_challenge text NOT NULL,
|
|
nonce text NOT NULL,
|
|
redirect_uri text NOT NULL,
|
|
code_response text,
|
|
auth_response text,
|
|
created_at timestamp without time zone NOT NULL DEFAULT now(),
|
|
updated_at timestamp without time zone NOT NULL DEFAULT now()
|
|
);
|
|
|