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.
Files changed (2) hide show
  1. package/index.js +2 -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 (conrelid::regclass::text = $1 OR conrelid::regclass::text = $2);`,
26347
- [`"${tableName}"`, tableName]
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,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "drizzle-kit",
3
- "version": "0.17.4-d104f8a",
3
+ "version": "0.17.4-dfd0933",
4
4
  "repository": "https://github.com/drizzle-team/drizzle-kit-mirror",
5
5
  "author": "Drizzle Team",
6
6
  "license": "MIT",