mirror of
https://github.com/pressly/goose.git
synced 2025-05-02 05:29:53 +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
|