mirror of
https://github.com/pressly/goose.git
synced 2025-07-10 20:48:35 +00:00
11 lines
246 B
SQL
11 lines
246 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
INSERT INTO owners(owner_name, owner_type)
|
|
VALUES ('lucas', 'user'), ('space', 'organization');
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
DELETE FROM owners;
|
|
-- +goose StatementEnd
|