@famgia/omnify-cli 2.0.16 → 2.0.17

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/dist/index.cjs CHANGED
@@ -1725,7 +1725,8 @@ function runDirectGeneration(schemas, config, rootDir, options, changes) {
1725
1725
  tableName,
1726
1726
  type: "create",
1727
1727
  schemas: migration.schemaName ? [migration.schemaName] : [],
1728
- content: migration.content
1728
+ content: migration.content,
1729
+ outputPath: config.output.laravel.migrationsPath
1729
1730
  });
1730
1731
  }
1731
1732
  }
@@ -1746,7 +1747,8 @@ function runDirectGeneration(schemas, config, rootDir, options, changes) {
1746
1747
  tableName,
1747
1748
  type: migration.type,
1748
1749
  schemas: [],
1749
- content: migration.content
1750
+ content: migration.content,
1751
+ outputPath: config.output.laravel.migrationsPath
1750
1752
  });
1751
1753
  }
1752
1754
  }