drizzle-kit 0.20.11 → 0.20.12-3e02b6e

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. package/bin.cjs +5 -5
  2. package/package.json +1 -1
  3. package/utils.js +4 -4
package/bin.cjs CHANGED
@@ -11521,7 +11521,7 @@ var init_mysqlImports = __esm({
11521
11521
  });
11522
11522
  }
11523
11523
  unregister();
11524
- return { tables, enums, schemas };
11524
+ return { tables: Array.from(new Set(tables)), enums, schemas };
11525
11525
  };
11526
11526
  }
11527
11527
  });
@@ -12166,7 +12166,7 @@ var init_pgImports = __esm({
12166
12166
  schemas.push(...prepared.schemas);
12167
12167
  }
12168
12168
  unregister();
12169
- return { tables, enums, schemas };
12169
+ return { tables: Array.from(new Set(tables)), enums, schemas };
12170
12170
  };
12171
12171
  }
12172
12172
  });
@@ -12323,7 +12323,7 @@ ${withStyle.errorWarning(`We've found duplicated unique constraint names in ${so
12323
12323
  name,
12324
12324
  tableFrom,
12325
12325
  tableTo,
12326
- schemaTo: schemaTo ?? "public",
12326
+ schemaTo,
12327
12327
  columnsFrom,
12328
12328
  columnsTo,
12329
12329
  onDelete,
@@ -12846,7 +12846,7 @@ var init_sqliteImports = __esm({
12846
12846
  });
12847
12847
  }
12848
12848
  unregister();
12849
- return { tables, enums };
12849
+ return { tables: Array.from(new Set(tables)), enums };
12850
12850
  };
12851
12851
  }
12852
12852
  });
@@ -62083,7 +62083,7 @@ init_source();
62083
62083
  // package.json
62084
62084
  var package_default = {
62085
62085
  name: "drizzle-kit",
62086
- version: "0.20.11",
62086
+ version: "0.20.12",
62087
62087
  repository: "https://github.com/drizzle-team/drizzle-kit-mirror",
62088
62088
  author: "Drizzle Team",
62089
62089
  license: "MIT",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "drizzle-kit",
3
- "version": "0.20.11",
3
+ "version": "0.20.12-3e02b6e",
4
4
  "repository": "https://github.com/drizzle-team/drizzle-kit-mirror",
5
5
  "author": "Drizzle Team",
6
6
  "license": "MIT",
package/utils.js CHANGED
@@ -11297,7 +11297,7 @@ var init_mysqlImports = __esm({
11297
11297
  });
11298
11298
  }
11299
11299
  unregister();
11300
- return { tables, enums, schemas };
11300
+ return { tables: Array.from(new Set(tables)), enums, schemas };
11301
11301
  };
11302
11302
  }
11303
11303
  });
@@ -11891,7 +11891,7 @@ var init_pgImports = __esm({
11891
11891
  schemas.push(...prepared.schemas);
11892
11892
  }
11893
11893
  unregister();
11894
- return { tables, enums, schemas };
11894
+ return { tables: Array.from(new Set(tables)), enums, schemas };
11895
11895
  };
11896
11896
  }
11897
11897
  });
@@ -12048,7 +12048,7 @@ ${withStyle.errorWarning(`We've found duplicated unique constraint names in ${so
12048
12048
  name,
12049
12049
  tableFrom,
12050
12050
  tableTo,
12051
- schemaTo: schemaTo ?? "public",
12051
+ schemaTo,
12052
12052
  columnsFrom,
12053
12053
  columnsTo,
12054
12054
  onDelete,
@@ -12571,7 +12571,7 @@ var init_sqliteImports = __esm({
12571
12571
  });
12572
12572
  }
12573
12573
  unregister();
12574
- return { tables, enums };
12574
+ return { tables: Array.from(new Set(tables)), enums };
12575
12575
  };
12576
12576
  }
12577
12577
  });