var ( ErrNoChange = errors.New("no change") ErrNilVersion = errors.New("no migration") ErrInvalidVersion = errors.New("version must be >= -1") ErrLocked = errors.New("database locked") ErrLockTimeout = errors.New("timeout: can't acquire database lock") )
DefaultBufferSize sets the in memory buffer size (in Bytes) for every pre-read migration (see DefaultPrefetchMigrations).
var DefaultBufferSize = uint(100000)
DefaultLockTimeout sets the max time a database driver has to acquire a lock.
var DefaultLockTimeout = 15 * time.Second
DefaultPrefetchMigrations sets the number of migrations to pre-read from the source. This is helpful if the source is remote, but has little effect for a local source (i.e. file system). Please note that this setting has a major impact on the memory usage, since each pre-read migration is buffered in memory. See DefaultBufferSize.
var DefaultPrefetchMigrations = uint(10)
func FilterCustomQuery(u *nurl.URL) *nurl.URL
FilterCustomQuery filters all query values starting with `x-`
type ErrDirty struct { Version int }
func (e ErrDirty) Error() string
ErrShortLimit is an error returned when not enough migrations can be returned by a source for a given limit.
type ErrShortLimit struct { Short uint }
func (e ErrShortLimit) Error() string
Error implements the error interface.
Logger is an interface so you can pass in your own logging implementation.
type Logger interface { // Printf is like fmt.Printf Printf(format string, v ...interface{}) // Verbose should return true when verbose logging output is wanted Verbose() bool }
type Migrate struct { // Log accepts a Logger interface Log Logger // GracefulStop accepts `true` and will stop executing migrations // as soon as possible at a safe break point, so that the database // is not corrupted. GracefulStop chan bool // PrefetchMigrations defaults to DefaultPrefetchMigrations, // but can be set per Migrate instance. PrefetchMigrations uint // LockTimeout defaults to DefaultLockTimeout, // but can be set per Migrate instance. LockTimeout time.Duration // contains filtered or unexported fields }
func New(sourceURL, databaseURL string) (*Migrate, error)
New returns a new Migrate instance from a source URL and a database URL. The URL scheme is defined by each driver.
▹ Example
func NewWithDatabaseInstance(sourceURL string, databaseName string, databaseInstance database.Driver) (*Migrate, error)
NewWithDatabaseInstance returns a new Migrate instance from a source URL and an existing database instance. The source URL scheme is defined by each driver. Use any string that can serve as an identifier during logging as databaseName. You are responsible for closing the underlying database client if necessary.
▹ Example
func NewWithInstance(sourceName string, sourceInstance source.Driver, databaseName string, databaseInstance database.Driver) (*Migrate, error)
NewWithInstance returns a new Migrate instance from an existing source and database instance. Use any string that can serve as an identifier during logging as sourceName and databaseName. You are responsible for closing down the underlying source and database client if necessary.
▹ Example
func NewWithSourceInstance(sourceName string, sourceInstance source.Driver, databaseURL string) (*Migrate, error)
NewWithSourceInstance returns a new Migrate instance from an existing source instance and a database URL. The database URL scheme is defined by each driver. Use any string that can serve as an identifier during logging as sourceName. You are responsible for closing the underlying source client if necessary.
▹ Example
func (m *Migrate) Close() (source error, database error)
Close closes the source and the database.
func (m *Migrate) Down() error
Down looks at the currently active migration version and will migrate all the way down (applying all down migrations).
func (m *Migrate) Drop() error
Drop deletes everything in the database.
func (m *Migrate) Force(version int) error
Force sets a migration version. It does not check any currently active version in database. It resets the dirty state to false.
func (m *Migrate) Migrate(version uint) error
Migrate looks at the currently active migration version, then migrates either up or down to the specified version.
func (m *Migrate) Run(migration ...*Migration) error
Run runs any migration provided by you against the database. It does not check any currently active version in database. Usually you don't need this function at all. Use Migrate, Steps, Up or Down instead.
func (m *Migrate) Steps(n int) error
Steps looks at the currently active migration version. It will migrate up if n > 0, and down if n < 0.
func (m *Migrate) Up() error
Up looks at the currently active migration version and will migrate all the way up (applying all up migrations).
func (m *Migrate) Version() (version uint, dirty bool, err error)
Version returns the currently active migration version. If no migration has been applied, yet, it will return ErrNilVersion.
Migration holds information about a migration. It is initially created from data coming from the source and then used when run against the database.
type Migration struct { // Identifier can be any string to help identifying // the migration in the source. Identifier string // Version is the version of this migration. Version uint // TargetVersion is the migration version after this migration // has been applied to the database. // Can be -1, implying that this is a NilVersion. TargetVersion int // Body holds an io.ReadCloser to the source. Body io.ReadCloser // BufferedBody holds an buffered io.Reader to the underlying Body. BufferedBody io.Reader // BufferSize defaults to DefaultBufferSize BufferSize uint // Scheduled is the time when the migration was scheduled/ queued. Scheduled time.Time // StartedBuffering is the time when buffering of the migration source started. StartedBuffering time.Time // FinishedBuffering is the time when buffering of the migration source finished. FinishedBuffering time.Time // FinishedReading is the time when the migration source is fully read. FinishedReading time.Time // BytesRead holds the number of Bytes read from the migration source. BytesRead int64 // contains filtered or unexported fields }
func NewMigration(body io.ReadCloser, identifier string, version uint, targetVersion int) (*Migration, error)
NewMigration returns a new Migration and sets the body, identifier, version and targetVersion. Body can be nil, which turns this migration into a "NilMigration". If no identifier is provided, it will default to "<empty>". targetVersion can be -1, implying it is a NilVersion.
What is a NilMigration? Usually each migration version coming from source is expected to have an Up and Down migration. This is not a hard requirement though, leading to a situation where only the Up or Down migration is present. So let's say the user wants to migrate up to a version that doesn't have the actual Up migration, in that case we still want to apply the version, but with an empty body. We are calling that a NilMigration, a migration with an empty body.
What is a NilVersion? NilVersion is a const(-1). When running down migrations and we are at the last down migration, there is no next down migration, the targetVersion should be nil. Nil in this case is represented by -1 (because type int).
▹ Example
▹ Example (NilMigration)
▹ Example (NilVersion)
func (m *Migration) Buffer() error
Buffer buffers Body up to BufferSize. Calling this function blocks. Call with goroutine.
func (m *Migration) LogString() string
LogString returns a string describing this migration to humans.
func (m *Migration) String() string
String implements string.Stringer and is used in tests.
MultiError holds multiple errors.
Deprecated: Use github.com/hashicorp/go-multierror instead
type MultiError struct { Errs []error }
func NewMultiError(errs ...error) MultiError
NewMultiError returns an error type holding multiple errors.
Deprecated: Use github.com/hashicorp/go-multierror instead
func (m MultiError) Error() string
Error implements error. Multiple errors are concatenated with 'and's.
Name | Synopsis |
---|---|
.. | |
cli | |
cmd | |
migrate | |
database | Package database provides the Database interface. |
cassandra | |
clickhouse | |
cockroachdb | |
firebird | |
mongodb | |
multistmt | Package multistmt provides methods for parsing multi-statement database migrations |
mysql | |
neo4j | |
pgx | |
postgres | |
ql | |
redshift | |
snowflake | |
spanner | |
sqlcipher | |
sqlite | |
sqlite3 | |
sqlserver | |
stub | |
testing | Package testing has the database tests. |
dktesting | |
source | Package source provides the Source interface. |
aws_s3 | |
bitbucket | |
file | |
github | |
github_ee | |
gitlab | |
go_bindata | |
examples | |
migrations | |
godoc_vfs | Package godoc_vfs contains a driver that reads migrations from a virtual file system. |
google_cloud_storage | |
httpfs | |
iofs | Package iofs provides the Go 1.16+ io/fs#FS driver. |
pkger | |
stub | |
testing | Package testing has the source tests. |
testing | Package testing is used in driver tests and should only be used by migrate tests. |