drizzle-kit 0.29.0 → 0.29.1
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 +2 -2
- package/package.json +1 -1
package/bin.cjs
CHANGED
|
@@ -91840,7 +91840,7 @@ var generate = command2({
|
|
|
91840
91840
|
} else if (dialect6 === "turso") {
|
|
91841
91841
|
await prepareAndMigrateLibSQL2(opts);
|
|
91842
91842
|
} else if (dialect6 === "singlestore") {
|
|
91843
|
-
await
|
|
91843
|
+
await prepareAndMigrateSingleStore2(opts);
|
|
91844
91844
|
} else {
|
|
91845
91845
|
assertUnreachable(dialect6);
|
|
91846
91846
|
}
|
|
@@ -92435,7 +92435,7 @@ init_utils5();
|
|
|
92435
92435
|
var version2 = async () => {
|
|
92436
92436
|
const { npmVersion } = await ormCoreVersions();
|
|
92437
92437
|
const ormVersion = npmVersion ? `drizzle-orm: v${npmVersion}` : "";
|
|
92438
|
-
const envVersion = "0.29.
|
|
92438
|
+
const envVersion = "0.29.1";
|
|
92439
92439
|
const kitVersion = envVersion ? `v${envVersion}` : "--";
|
|
92440
92440
|
const versions = `drizzle-kit: ${kitVersion}
|
|
92441
92441
|
${ormVersion}`;
|