drizzle-kit 1.0.0-beta.1-9e70ee7 → 1.0.0-beta.1-14dce51
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 +4 -4
- package/package.json +1 -1
package/bin.cjs
CHANGED
@@ -86256,9 +86256,9 @@ var init_introspect = __esm({
|
|
86256
86256
|
tableRelations[toTable2].push({
|
86257
86257
|
name: (0, import_pluralize.plural)(toTable1),
|
86258
86258
|
type: "many-through",
|
86259
|
-
tableFrom:
|
86259
|
+
tableFrom: toTable2,
|
86260
86260
|
columnsFrom: fk22.columnsFrom,
|
86261
|
-
tableTo:
|
86261
|
+
tableTo: toTable1,
|
86262
86262
|
columnsTo: columnsTo2,
|
86263
86263
|
tableThrough,
|
86264
86264
|
columnsThroughFrom,
|
@@ -86325,7 +86325,7 @@ import * as schema from "./schema";
|
|
86325
86325
|
}
|
86326
86326
|
return {
|
86327
86327
|
...relation,
|
86328
|
-
name,
|
86328
|
+
name: withCasing4(name, casing2),
|
86329
86329
|
relationName
|
86330
86330
|
};
|
86331
86331
|
}
|
@@ -92721,7 +92721,7 @@ init_utils5();
|
|
92721
92721
|
var version2 = async () => {
|
92722
92722
|
const { npmVersion } = await ormCoreVersions();
|
92723
92723
|
const ormVersion = npmVersion ? `drizzle-orm: v${npmVersion}` : "";
|
92724
|
-
const envVersion = "1.0.0-beta.1-
|
92724
|
+
const envVersion = "1.0.0-beta.1-14dce51";
|
92725
92725
|
const kitVersion = envVersion ? `v${envVersion}` : "--";
|
92726
92726
|
const versions = `drizzle-kit: ${kitVersion}
|
92727
92727
|
${ormVersion}`;
|