mirror of
https://github.com/pressly/goose.git
synced 2025-05-31 11:42:04 +00:00
10 lines
193 B
SQL
10 lines
193 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
CREATE SCHEMA IF NOT EXISTS testing;
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
DROP SCHEMA IF EXISTS testing;
|
|
-- +goose StatementEnd
|