pull/9/head
Vojtech Vitek (V-Teq) 2016-10-03 19:36:16 -04:00
parent 9bf132172d
commit 6804955eb2
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ func (m *Migration) Down(db *sql.DB) error {
func (m *Migration) run(db *sql.DB, direction bool) error {
switch filepath.Ext(m.Source) {
case ".sql":
if err = runSQLMigration(db, m.Source, m.Version, direction); err != nil {
if err := runSQLMigration(db, m.Source, m.Version, direction); err != nil {
return errors.New(fmt.Sprintf("FAIL %v, quitting migration", err))
}