mirror of
https://github.com/pressly/goose.git
synced 2025-05-31 11:42:04 +00:00
11 lines
257 B
SQL
11 lines
257 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
INSERT INTO owners(owner_id, owner_name, owner_type)
|
|
VALUES (1, 'lucas', 'user'), (2, 'space', 'organization');
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
DELETE FROM owners;
|
|
-- +goose StatementEnd
|