millas 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/commands/migrate.js +1 -1
package/package.json
CHANGED
package/src/commands/migrate.js
CHANGED
|
@@ -156,7 +156,7 @@ async function getDbConnection() {
|
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
async function getRunner() {
|
|
159
|
-
const
|
|
159
|
+
const MigrationRunner = require('../orm/migration/MigrationRunner');
|
|
160
160
|
const ctx = getProjectContext();
|
|
161
161
|
const db = await getDbConnection();
|
|
162
162
|
return new MigrationRunner(db, ctx.migrationsPath);
|