mirror of
https://github.com/pressly/goose.git
synced 2025-05-03 14:10:43 +00:00
10 lines
239 B
SQL
10 lines
239 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
UPDATE users SET username='admin' WHERE username='root';
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
UPDATE users SET username='root' WHERE username='admin';
|
|
-- +goose StatementEnd
|