@famgia/omnify 1.0.50 → 1.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.
|
@@ -32,15 +32,19 @@ properties:
|
|
|
32
32
|
### String Types
|
|
33
33
|
| Type | Description | Options |
|
|
34
34
|
|------|-------------|---------|
|
|
35
|
-
| `String` | Short text (varchar) | `
|
|
36
|
-
| `
|
|
35
|
+
| `String` | Short text (varchar) | `length`, `default` |
|
|
36
|
+
| `Text` | Text (~65KB) | `default` |
|
|
37
|
+
| `MediumText` | Medium text (~16MB) | `default` |
|
|
38
|
+
| `LongText` | Long text (~4GB) | `default` |
|
|
37
39
|
|
|
38
40
|
### Numeric Types
|
|
39
41
|
| Type | Description | Options |
|
|
40
42
|
|------|-------------|---------|
|
|
41
|
-
| `
|
|
42
|
-
| `
|
|
43
|
-
| `
|
|
43
|
+
| `TinyInt` | 8-bit integer (-128~127) | `default`, `unsigned` |
|
|
44
|
+
| `Int` | 32-bit integer | `default`, `unsigned` |
|
|
45
|
+
| `BigInt` | 64-bit integer | `default`, `unsigned` |
|
|
46
|
+
| `Float` | Floating point | `default` |
|
|
47
|
+
| `Decimal` | Precise decimal | `precision`, `scale`, `default` |
|
|
44
48
|
|
|
45
49
|
### Other Types
|
|
46
50
|
| Type | Description | Options |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@famgia/omnify",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.52",
|
|
4
4
|
"description": "Schema-driven database migration system with TypeScript types and Laravel migrations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -25,13 +25,13 @@
|
|
|
25
25
|
"README.md"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@famgia/omnify-cli": "0.0.
|
|
29
|
-
"@famgia/omnify-
|
|
30
|
-
"@famgia/omnify-
|
|
31
|
-
"@famgia/omnify-laravel": "0.0.51",
|
|
32
|
-
"@famgia/omnify-typescript": "0.0.33",
|
|
33
|
-
"@famgia/omnify-japan": "0.0.39",
|
|
28
|
+
"@famgia/omnify-cli": "0.0.50",
|
|
29
|
+
"@famgia/omnify-core": "0.0.45",
|
|
30
|
+
"@famgia/omnify-laravel": "0.0.52",
|
|
34
31
|
"@famgia/omnify-atlas": "0.0.40",
|
|
32
|
+
"@famgia/omnify-types": "0.0.42",
|
|
33
|
+
"@famgia/omnify-typescript": "0.0.34",
|
|
34
|
+
"@famgia/omnify-japan": "0.0.39",
|
|
35
35
|
"@famgia/omnify-mcp": "0.0.32"
|
|
36
36
|
},
|
|
37
37
|
"keywords": [
|