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.mjs CHANGED
@@ -5883,7 +5883,9 @@ const rakeDbCommands = {
5883
5883
  help: "drop databases"
5884
5884
  },
5885
5885
  reset: {
5886
- run: resetDb,
5886
+ run: (options, config) => resetDb(options, config).then(
5887
+ () => runRecurrentMigrations(options, config)
5888
+ ),
5887
5889
  help: "drop, create and migrate databases"
5888
5890
  },
5889
5891
  up: upCommand,