mirror of
https://github.com/pressly/goose.git
synced 2025-05-31 11:42:04 +00:00
10 lines
239 B
SQL
10 lines
239 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
ALTER TABLE stargazers DROP COLUMN stargazer_location;
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
ALTER TABLE stargazers ADD COLUMN stargazer_location Utf8;
|
|
-- +goose StatementEnd
|