rake-db 2.23.6 → 2.23.8
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/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -5885,7 +5885,9 @@ const rakeDbCommands = {
|
|
|
5885
5885
|
help: "drop databases"
|
|
5886
5886
|
},
|
|
5887
5887
|
reset: {
|
|
5888
|
-
run: resetDb,
|
|
5888
|
+
run: (options, config) => resetDb(options, config).then(
|
|
5889
|
+
() => runRecurrentMigrations(options, config)
|
|
5890
|
+
),
|
|
5889
5891
|
help: "drop, create and migrate databases"
|
|
5890
5892
|
},
|
|
5891
5893
|
up: upCommand,
|