Merge pull request #23 from przemyslaw-dobrowolski-cl/add_custom_filenames

Add support for adding migrations with custom filenames
pull/26/head
Vojtech Vitek 2017-03-27 11:19:56 -04:00 committed by GitHub
commit 729045fdd1
1 changed files with 4 additions and 0 deletions

View File

@ -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}