Added Scopes to the user table

This commit is contained in:
James Tombleson 2024-03-31 17:47:24 -07:00
parent 0d253270b7
commit e0253f04e7
1 changed files with 10 additions and 0 deletions

View File

@ -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