drizzle-kit 0.20.1-56e7be6 → 0.20.1-85fc559
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/bin.cjs +3 -3
- package/package.json +1 -1
- package/utils.js +3 -3
package/bin.cjs
CHANGED
@@ -12073,9 +12073,9 @@ var init_pgImports = __esm({
|
|
12073
12073
|
const it = imports[i];
|
12074
12074
|
const i0 = require(`${it}`);
|
12075
12075
|
const prepared = prepareFromExports(i0);
|
12076
|
-
tables
|
12077
|
-
enums
|
12078
|
-
schemas
|
12076
|
+
tables.push(...prepared.tables);
|
12077
|
+
enums.push(...prepared.enums);
|
12078
|
+
schemas.push(...prepared.schemas);
|
12079
12079
|
}
|
12080
12080
|
unregister();
|
12081
12081
|
return { tables, enums, schemas };
|
package/package.json
CHANGED
package/utils.js
CHANGED
@@ -11796,9 +11796,9 @@ var init_pgImports = __esm({
|
|
11796
11796
|
const it = imports[i];
|
11797
11797
|
const i0 = require(`${it}`);
|
11798
11798
|
const prepared = prepareFromExports(i0);
|
11799
|
-
tables
|
11800
|
-
enums
|
11801
|
-
schemas
|
11799
|
+
tables.push(...prepared.tables);
|
11800
|
+
enums.push(...prepared.enums);
|
11801
|
+
schemas.push(...prepared.schemas);
|
11802
11802
|
}
|
11803
11803
|
unregister();
|
11804
11804
|
return { tables, enums, schemas };
|