@famgia/omnify-laravel 0.0.51 → 0.0.52

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.js CHANGED
@@ -22,7 +22,7 @@ import {
22
22
  schemaToBlueprint,
23
23
  toColumnName,
24
24
  toTableName
25
- } from "./chunk-FSVH5TYU.js";
25
+ } from "./chunk-VS3UOQWY.js";
26
26
  export {
27
27
  formatColumnMethod,
28
28
  formatForeignKey,
package/dist/plugin.cjs CHANGED
@@ -38,6 +38,7 @@ var TYPE_METHOD_MAP = {
38
38
  Decimal: "decimal",
39
39
  Boolean: "boolean",
40
40
  Text: "text",
41
+ MediumText: "mediumText",
41
42
  LongText: "longText",
42
43
  Date: "date",
43
44
  Time: "time",
@@ -876,12 +877,14 @@ function getMigrationPath(migration, outputDir = "database/migrations") {
876
877
  // src/migration/alter-generator.ts
877
878
  var TYPE_METHOD_MAP2 = {
878
879
  String: "string",
880
+ TinyInt: "tinyInteger",
879
881
  Int: "integer",
880
882
  BigInt: "bigInteger",
881
883
  Float: "double",
882
884
  Decimal: "decimal",
883
885
  Boolean: "boolean",
884
886
  Text: "text",
887
+ MediumText: "mediumText",
885
888
  LongText: "longText",
886
889
  Date: "date",
887
890
  Time: "time",