mirror of https://github.com/pressly/goose.git
Add support for adding migrations with custom filenames
parent
221ff41793
commit
9fc6f5207a
|
@ -79,6 +79,10 @@ func (ms Migrations) String() string {
|
||||||
|
|
||||||
func AddMigration(up func(*sql.Tx) error, down func(*sql.Tx) error) {
|
func AddMigration(up func(*sql.Tx) error, down func(*sql.Tx) error) {
|
||||||
_, filename, _, _ := runtime.Caller(1)
|
_, 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)
|
v, _ := NumericComponent(filename)
|
||||||
migration := &Migration{Version: v, Next: -1, Previous: -1, UpFn: up, DownFn: down, Source: filename}
|
migration := &Migration{Version: v, Next: -1, Previous: -1, UpFn: up, DownFn: down, Source: filename}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue