remove the refresh_token table

pull/106/head
Chris Veilleux 2019-04-08 20:55:12 -05:00
parent af5d5b5be3
commit 5f7d4df931
1 changed files with 0 additions and 7 deletions

View File

@ -1,7 +0,0 @@
CREATE TABLE account.refresh_token (
id uuid PRIMARY KEY DEFAULT gen_random_uuid(),
account_id uuid NOT NULL REFERENCES account.account ON DELETE CASCADE,
refresh_token text,
insert_ts TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
UNIQUE (account_id, refresh_token)
);