mirror of
https://github.com/pressly/goose.git
synced 2025-09-04 19:37:19 +00:00
10 lines
244 B
SQL
10 lines
244 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
INSERT INTO owners(owner_name) VALUES ('james'), ('space');
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
DELETE FROM owners WHERE owner_name IN ('james', 'space');
|
|
-- +goose StatementEnd
|