mirror of
https://github.com/pressly/goose.git
synced 2025-05-31 11:42:04 +00:00
14 lines
286 B
SQL
14 lines
286 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
ALTER TABLE repos
|
|
ADD COLUMN homepage_url Utf8,
|
|
ADD COLUMN is_private Bool;
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
ALTER TABLE repos
|
|
DROP COLUMN homepage_url,
|
|
DROP COLUMN is_private;
|
|
-- +goose StatementEnd
|