From 5f7d4df931306c694548b359c0ec095e295710fe Mon Sep 17 00:00:00 2001 From: Chris Veilleux Date: Mon, 8 Apr 2019 20:55:12 -0500 Subject: [PATCH] remove the refresh_token table --- db/mycroft/account_schema/tables/refresh_token.sql | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 db/mycroft/account_schema/tables/refresh_token.sql diff --git a/db/mycroft/account_schema/tables/refresh_token.sql b/db/mycroft/account_schema/tables/refresh_token.sql deleted file mode 100644 index 5b479b48..00000000 --- a/db/mycroft/account_schema/tables/refresh_token.sql +++ /dev/null @@ -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) -);