From e0253f04e76d967dd76254d8e4e7eb7e0dd14909 Mon Sep 17 00:00:00 2001 From: James Tombleson Date: Sun, 31 Mar 2024 17:47:24 -0700 Subject: [PATCH] Added Scopes to the user table --- api/migrations/20240329211828_user_scopes.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 api/migrations/20240329211828_user_scopes.sql diff --git a/api/migrations/20240329211828_user_scopes.sql b/api/migrations/20240329211828_user_scopes.sql new file mode 100644 index 0000000..f75cfe9 --- /dev/null +++ b/api/migrations/20240329211828_user_scopes.sql @@ -0,0 +1,10 @@ +-- +goose Up +-- +goose StatementBegin +SELECT 'up SQL query'; +ALTER Table USERS ADD Scopes TEXT; +-- +goose StatementEnd +-- +goose Down +-- +goose StatementBegin +SELECT 'down SQL query'; +ALTER TABLE USERS DROP COLUMN Scopes; +-- +goose StatementEnd \ No newline at end of file