2023-11-09 09:23:37 -05:00

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