drizzle-kit 0.31.6 → 0.31.7-391d33b
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/api.js +2 -1
- package/api.mjs +2 -1
- package/bin.cjs +3 -2
- package/package.json +1 -1
package/api.js
CHANGED
|
@@ -44612,7 +44612,8 @@ WHERE
|
|
|
44612
44612
|
WHERE
|
|
44613
44613
|
tc.table_name = '${tableName}'
|
|
44614
44614
|
AND tc.constraint_schema = '${tableSchema}'
|
|
44615
|
-
AND tc.constraint_type = 'CHECK'
|
|
44615
|
+
AND tc.constraint_type = 'CHECK'
|
|
44616
|
+
AND con.contype = 'c';`);
|
|
44616
44617
|
columnsCount += tableResponse.length;
|
|
44617
44618
|
if (progressCallback) {
|
|
44618
44619
|
progressCallback("columns", columnsCount, "fetching");
|
package/api.mjs
CHANGED
|
@@ -44618,7 +44618,8 @@ WHERE
|
|
|
44618
44618
|
WHERE
|
|
44619
44619
|
tc.table_name = '${tableName}'
|
|
44620
44620
|
AND tc.constraint_schema = '${tableSchema}'
|
|
44621
|
-
AND tc.constraint_type = 'CHECK'
|
|
44621
|
+
AND tc.constraint_type = 'CHECK'
|
|
44622
|
+
AND con.contype = 'c';`);
|
|
44622
44623
|
columnsCount += tableResponse.length;
|
|
44623
44624
|
if (progressCallback) {
|
|
44624
44625
|
progressCallback("columns", columnsCount, "fetching");
|
package/bin.cjs
CHANGED
|
@@ -19477,7 +19477,8 @@ WHERE
|
|
|
19477
19477
|
WHERE
|
|
19478
19478
|
tc.table_name = '${tableName}'
|
|
19479
19479
|
AND tc.constraint_schema = '${tableSchema}'
|
|
19480
|
-
AND tc.constraint_type = 'CHECK'
|
|
19480
|
+
AND tc.constraint_type = 'CHECK'
|
|
19481
|
+
AND con.contype = 'c';`);
|
|
19481
19482
|
columnsCount += tableResponse.length;
|
|
19482
19483
|
if (progressCallback) {
|
|
19483
19484
|
progressCallback("columns", columnsCount, "fetching");
|
|
@@ -94332,7 +94333,7 @@ init_utils5();
|
|
|
94332
94333
|
var version2 = async () => {
|
|
94333
94334
|
const { npmVersion } = await ormCoreVersions();
|
|
94334
94335
|
const ormVersion = npmVersion ? `drizzle-orm: v${npmVersion}` : "";
|
|
94335
|
-
const envVersion = "0.31.
|
|
94336
|
+
const envVersion = "0.31.7-391d33b";
|
|
94336
94337
|
const kitVersion = envVersion ? `v${envVersion}` : "--";
|
|
94337
94338
|
const versions = `drizzle-kit: ${kitVersion}
|
|
94338
94339
|
${ormVersion}`;
|