drizzle-kit 0.20.0-c92553e → 0.20.0-e44f3ff

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.
Files changed (2) hide show
  1. package/index.cjs +3 -1
  2. 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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "drizzle-kit",
3
- "version": "0.20.0-c92553e",
3
+ "version": "0.20.0-e44f3ff",
4
4
  "repository": "https://github.com/drizzle-team/drizzle-kit-mirror",
5
5
  "author": "Drizzle Team",
6
6
  "license": "MIT",