docs: add goose validate command to help and readme (#512)

pull/516/head
Michael Fridman 2023-05-05 08:35:06 -04:00 committed by GitHub
parent ba6e5fb6f0
commit 7ce30b743d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 11 deletions

View File

@ -13,6 +13,7 @@ Goose supports [embedding SQL migrations](#embedded-sql-migrations), which means
### Goals of this fork
`github.com/pressly/goose` is a fork of `bitbucket.org/liamstask/goose` with the following changes:
- No config files
- [Default goose binary](./cmd/goose/main.go) can migrate SQL files only
- Go migrations:
@ -112,6 +113,7 @@ Commands:
version Print the current version of the database
create NAME [sql|go] Creates new migration file with the current timestamp
fix Apply sequential ordering to migrations
validate Check migration files without running them
```
## create
@ -255,6 +257,7 @@ language plpgsql;
```
## Embedded sql migrations
Go 1.16 introduced new feature: [compile-time embedding](https://pkg.go.dev/embed/) files into binary and
corresponding [filesystem abstraction](https://pkg.go.dev/io/fs/).
@ -350,6 +353,7 @@ DOCKER_BUILDKIT=1 docker build -f Dockerfile.local --output bin .
```
# Hybrid Versioning
Please, read the [versioning problem](https://github.com/pressly/goose/issues/63#issuecomment-428681694) first.
By default, if you attempt to apply missing (out-of-order) migrations `goose` will raise an error. However, If you want to apply these missing migrations pass goose the `-allow-missing` flag, or if using as a library supply the functional option `goose.WithAllowMissing()` to Up, UpTo or UpByOne.

View File

@ -241,6 +241,7 @@ Commands:
version Print the current version of the database
create NAME [sql|go] Creates new migration file with the current timestamp
fix Apply sequential ordering to migrations
validate Check migration files without running them
`
)