migrator v0.3.0 Release Notes
Release Date: 2020-04-10 // over 4 years ago-
๐ Changes since v0.2.0
- README improvements
- โ Add
WithLogger
option, allowing logger customization #30
Thanks to @adamdecaf @dufcrule
Previous changes from v0.2.0
-
๐ Changes since v0.1.0
- README improvements.
- โ Test coverage improvements.
- โ Add
Pending
func to get pending migrations: #9 - โ Add
TableName
opt, so the migration table name is now seteable: #13
๐ฅ Breaking changes, now migrations must be set on New via
Migrations
opt:m := migrator.New( Migrations( &migrator.Migration{ Name: "Create table foo", Func: func(tx *sql.Tx) error { if _, err := tx.Exec("CREATE TABLE foo (id INT PRIMARY KEY)"); err != nil { return err } return nil }, }, ), )
Thanks to @adiweiss @cinemast @glerchundi @dufcrule