drizzle-kit 0.17.4-d104f8a → 0.17.4-dfd0933
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/index.js +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -26343,8 +26343,8 @@ var init_pgSerializer = __esm({
|
|
|
26343
26343
|
FROM pg_constraint
|
|
26344
26344
|
WHERE contype = 'p'
|
|
26345
26345
|
AND connamespace = 'public'::regnamespace
|
|
26346
|
-
AND
|
|
26347
|
-
[
|
|
26346
|
+
AND conrelid::regclass::text = $1;`,
|
|
26347
|
+
[tableName]
|
|
26348
26348
|
);
|
|
26349
26349
|
primaryKeys[`${tableName}_${cprimaryKey.map((pk) => pk.column_name).join("_")}`] = {
|
|
26350
26350
|
name: tableCompositePkName.rows[0].primary_key,
|