@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/cli.js +26 -5
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
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
|
}
|