forked from mystiq/dex
44c6cb44f5
This enables us to control the length of the bytes that will be bcrypted, by default it's 64. Also changed the token's stored form from string('text') to []byte('bytea') and added some test cases for different types of invalid tokens.
21 lines
506 B
SQL
21 lines
506 B
SQL
-- +migrate Up
|
|
CREATE TABLE refresh_token (
|
|
id bigint NOT NULL,
|
|
payload_hash bytea,
|
|
user_id text,
|
|
client_id text
|
|
);
|
|
|
|
CREATE SEQUENCE refresh_token_id_seq
|
|
START WITH 1
|
|
INCREMENT BY 1
|
|
NO MINVALUE
|
|
NO MAXVALUE
|
|
CACHE 1;
|
|
|
|
ALTER SEQUENCE refresh_token_id_seq OWNED BY refresh_token.id;
|
|
|
|
ALTER TABLE ONLY refresh_token ALTER COLUMN id SET DEFAULT nextval('refresh_token_id_seq'::regclass);
|
|
|
|
ALTER TABLE ONLY refresh_token
|
|
ADD CONSTRAINT refresh_token_pkey PRIMARY KEY (id);
|