@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/{chunk-FSVH5TYU.js → chunk-VS3UOQWY.js} +4 -1
- package/dist/chunk-VS3UOQWY.js.map +1 -0
- package/dist/index.cjs +3 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/plugin.cjs +3 -0
- package/dist/plugin.cjs.map +1 -1
- package/dist/plugin.js +1 -1
- package/package.json +3 -3
- package/dist/chunk-FSVH5TYU.js.map +0 -1
package/dist/index.js
CHANGED
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",
|