@simplysm/orm-common 13.0.0-beta.50 → 13.0.0-beta.51

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.
Files changed (2) hide show
  1. package/docs/schema.md +4 -0
  2. package/package.json +2 -2
package/docs/schema.md CHANGED
@@ -42,6 +42,10 @@ const User = Table("User")
42
42
  | `c.uuid()` | UUID / UNIQUEIDENTIFIER / BINARY(16) | `Uuid` |
43
43
  | `c.binary()` | BLOB / VARBINARY(MAX) / BYTEA | `Bytes` |
44
44
 
45
+ > **Important:** `c.int()` and `c.bigint()` both map to TypeScript `number`, **not** JavaScript's native `BigInt`.
46
+ > The names `int` / `bigint` refer to SQL data types (storage size), not JavaScript types.
47
+ > Do not use `BigInt` literals (e.g. `1n`) or the `bigint` TypeScript type with this ORM.
48
+
45
49
  ## Column Options
46
50
 
47
51
  | Method | Description |
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@simplysm/orm-common",
3
3
  "sideEffects": false,
4
- "version": "13.0.0-beta.50",
4
+ "version": "13.0.0-beta.51",
5
5
  "description": "심플리즘 패키지 - ORM 모듈 (common)",
6
6
  "author": "김석래",
7
7
  "repository": {
@@ -19,6 +19,6 @@
19
19
  "docs"
20
20
  ],
21
21
  "dependencies": {
22
- "@simplysm/core-common": "13.0.0-beta.50"
22
+ "@simplysm/core-common": "13.0.0-beta.51"
23
23
  }
24
24
  }