go-cook/internal/migrations/20240329211828_user_scopes.sql

10 lines
244 B
MySQL
Raw Normal View History

2024-03-31 17:47:24 -07:00
-- +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