250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- HTML
- express.js
- middleware
- Interface
- web
- solidity
- Props
- Redux
- hardhat
- CLASS
- CSS
- built in object
- tailwindcss
- typeScript
- JavaScript
- nextJS
- 삶
- useState
- REACT
- node.js
- evm
- 기준
- SSR
- API
- graphQL
- error
- blockchain
- Ethereum
- concept
- bitcoin
Archives
- Today
- Total
목록drizzle (1)
ReasonJun
Drizzle ORM - SQL Types
Integer Signed 4 Bytes => export const testTable = pgTable("testTable", { qty: integer("qty") }) Signed 2 Bytes => export const testTable = pgTable("testTable", { qty: smallint("qty") }) Signed 8 Bytes => export const testTable = pgTable("testTable", { qty: bigint("qty", {mode: "number"}) // {mode: "number"} : 2^31 < number < 2^53 // {mode: "bigint"} : 2^63 < number < 2^63 }) serial serial / ser..
카테고리 없음
2024. 2. 5. 14:27