rake-db 2.8.22 → 2.8.24
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.d.ts +4 -3
- package/dist/index.js +8 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1680,7 +1680,8 @@ const migrateOrRollback = async (options, config, args, up) => {
|
|
|
1680
1680
|
cache: appCodeUpdaterCache,
|
|
1681
1681
|
logger: config.logger,
|
|
1682
1682
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
1683
|
-
baseTable: config.baseTable
|
|
1683
|
+
baseTable: config.baseTable,
|
|
1684
|
+
import: config.import
|
|
1684
1685
|
}));
|
|
1685
1686
|
await adapter.close();
|
|
1686
1687
|
}
|
|
@@ -1727,7 +1728,8 @@ const processMigration = async (db, up, file, config, options, appCodeUpdaterCac
|
|
|
1727
1728
|
cache: appCodeUpdaterCache,
|
|
1728
1729
|
logger: config.logger,
|
|
1729
1730
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
1730
|
-
baseTable: config.baseTable
|
|
1731
|
+
baseTable: config.baseTable,
|
|
1732
|
+
import: config.import
|
|
1731
1733
|
}));
|
|
1732
1734
|
}
|
|
1733
1735
|
};
|
|
@@ -3016,7 +3018,8 @@ const pullDbStructure = async (options, config) => {
|
|
|
3016
3018
|
cache,
|
|
3017
3019
|
logger: config.logger,
|
|
3018
3020
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
3019
|
-
baseTable: config.baseTable
|
|
3021
|
+
baseTable: config.baseTable,
|
|
3022
|
+
import: config.import
|
|
3020
3023
|
}));
|
|
3021
3024
|
}
|
|
3022
3025
|
await ((_b = config == null ? void 0 : config.appCodeUpdater) == null ? void 0 : _b.afterAll({
|
|
@@ -3025,7 +3028,8 @@ const pullDbStructure = async (options, config) => {
|
|
|
3025
3028
|
cache,
|
|
3026
3029
|
logger: config.logger,
|
|
3027
3030
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
3028
|
-
baseTable: config.baseTable
|
|
3031
|
+
baseTable: config.baseTable,
|
|
3032
|
+
import: config.import
|
|
3029
3033
|
}));
|
|
3030
3034
|
const unsupportedEntries = Object.entries(ctx.unsupportedTypes);
|
|
3031
3035
|
const len = unsupportedEntries.length;
|