mirror of https://github.com/pressly/goose.git
Merge pull request #23 from przemyslaw-dobrowolski-cl/add_custom_filenames
Add support for adding migrations with custom filenamespull/26/head
commit
729045fdd1
|
@ -79,6 +79,10 @@ func (ms Migrations) String() string {
|
|||
|
||||
func AddMigration(up func(*sql.Tx) error, down func(*sql.Tx) error) {
|
||||
_, filename, _, _ := runtime.Caller(1)
|
||||
AddNamedMigration(filename, up, down)
|
||||
}
|
||||
|
||||
func AddNamedMigration(filename string, up func(*sql.Tx) error, down func(*sql.Tx) error) {
|
||||
v, _ := NumericComponent(filename)
|
||||
migration := &Migration{Version: v, Next: -1, Previous: -1, UpFn: up, DownFn: down, Source: filename}
|
||||
|
||||
|
|
Loading…
Reference in New Issue