Updated migrator tests

This commit is contained in:
Tripon Alexandru-Ionut
2019-05-28 15:00:39 +03:00
committed by Dan Christian Bogos
parent 570db82c35
commit d1c7ca3369
27 changed files with 1490 additions and 33 deletions

View File

@@ -41,6 +41,10 @@ type migratorSQL struct {
rowIter *sql.Rows
}
func (sqlMig *migratorSQL) close() {
sqlMig.sqlStorage.Close()
}
func (sqlMig *migratorSQL) StorDB() engine.StorDB {
return *sqlMig.storDB
}