drizzle-kit 0.20.0-c92553e → 0.20.0-e44f3ff
Sign up to get free protection for your applications and to get access to all the features.
- package/index.cjs +3 -1
- package/package.json +1 -1
package/index.cjs
CHANGED
@@ -58233,7 +58233,7 @@ var init_studioUtils = __esm({
|
|
58233
58233
|
};
|
58234
58234
|
prepareMySqlSchema = async (path4) => {
|
58235
58235
|
const imports = prepareFilenames(path4);
|
58236
|
-
const mysqlSchema4 = {};
|
58236
|
+
const mysqlSchema4 = { public: {} };
|
58237
58237
|
const relations4 = {};
|
58238
58238
|
const { unregister } = await safeRegister();
|
58239
58239
|
for (let i = 0; i < imports.length; i++) {
|
@@ -61549,6 +61549,8 @@ var dropCommand = new import_commander.Command("drop").option("--out <out>", `Ou
|
|
61549
61549
|
await dropMigration(out);
|
61550
61550
|
});
|
61551
61551
|
var studioCommand = new import_commander.Command("studio").option("--port <port>", "Custom port for drizzle studio [default=4983]").option("--host <host>", "Custom host for drizzle studio [default=0.0.0.0]").option("--verbose", "Print all stataments that are executed by Studio").option("--config <config>", `Config path [default=drizzle.config.ts]`).action(async (options) => {
|
61552
|
+
await printVersions();
|
61553
|
+
await assertOrmCoreVersion();
|
61552
61554
|
const { validateStudio: validateStudio2 } = await Promise.resolve().then(() => (init_studio(), studio_exports));
|
61553
61555
|
const drizzleConfig = await validateStudio2(options);
|
61554
61556
|
const {
|