drizzle-kit 0.30.0-29eb63c → 0.30.0-74a51ae
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
@@ -91811,7 +91811,7 @@ var generate = command2({
|
|
91811
91811
|
} else if (dialect6 === "turso") {
|
91812
91812
|
await prepareAndMigrateLibSQL2(opts);
|
91813
91813
|
} else if (dialect6 === "singlestore") {
|
91814
|
-
await
|
91814
|
+
await prepareAndMigrateSingleStore2(opts);
|
91815
91815
|
} else {
|
91816
91816
|
assertUnreachable(dialect6);
|
91817
91817
|
}
|
@@ -92406,7 +92406,7 @@ init_utils5();
|
|
92406
92406
|
var version2 = async () => {
|
92407
92407
|
const { npmVersion } = await ormCoreVersions();
|
92408
92408
|
const ormVersion = npmVersion ? `drizzle-orm: v${npmVersion}` : "";
|
92409
|
-
const envVersion = "0.30.0-
|
92409
|
+
const envVersion = "0.30.0-74a51ae";
|
92410
92410
|
const kitVersion = envVersion ? `v${envVersion}` : "--";
|
92411
92411
|
const versions = `drizzle-kit: ${kitVersion}
|
92412
92412
|
${ormVersion}`;
|