@famgia/omnify-laravel 2.0.17 → 2.0.19
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/{chunk-F2VU73BX.js → chunk-U3NDJ6S6.js} +7 -2
- package/dist/chunk-U3NDJ6S6.js.map +1 -0
- package/dist/index.cjs +6 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +1 -1
- package/dist/plugin.cjs +6 -1
- package/dist/plugin.cjs.map +1 -1
- package/dist/plugin.js +1 -1
- package/package.json +4 -4
- package/stubs/ai-guides/claude-omnify/schema-guide.md.stub +27 -4
- package/stubs/ai-guides/claude-rules/schema-yaml.md.stub +19 -0
- package/dist/chunk-F2VU73BX.js.map +0 -1
|
@@ -1232,7 +1232,10 @@ function generateMigrations(schemas, options = {}) {
|
|
|
1232
1232
|
...options,
|
|
1233
1233
|
timestamp: offsetTimestamp
|
|
1234
1234
|
});
|
|
1235
|
-
migrations.push(
|
|
1235
|
+
migrations.push({
|
|
1236
|
+
...migration,
|
|
1237
|
+
schemaName: schema.name
|
|
1238
|
+
});
|
|
1236
1239
|
}
|
|
1237
1240
|
}
|
|
1238
1241
|
return migrations;
|
|
@@ -1282,6 +1285,8 @@ var TYPE_METHOD_MAP2 = {
|
|
|
1282
1285
|
TinyInt: "tinyInteger",
|
|
1283
1286
|
Int: "integer",
|
|
1284
1287
|
BigInt: "bigInteger",
|
|
1288
|
+
Uuid: "uuid",
|
|
1289
|
+
// UUID type for foreign keys and custom fields
|
|
1285
1290
|
Float: "double",
|
|
1286
1291
|
Decimal: "decimal",
|
|
1287
1292
|
Boolean: "boolean",
|
|
@@ -5254,4 +5259,4 @@ export {
|
|
|
5254
5259
|
getFactoryPath,
|
|
5255
5260
|
laravelPlugin
|
|
5256
5261
|
};
|
|
5257
|
-
//# sourceMappingURL=chunk-
|
|
5262
|
+
//# sourceMappingURL=chunk-U3NDJ6S6.js.map
|