(name: string)
| 27 | export const bigintColumn = (name: string) => column(name, "bigint"); |
| 28 | export const nullableBigintColumn = (name: string) => column(name, "bigint").nullable(); |
| 29 | export const jsonColumn = (name: string) => column(name, "json"); |
| 30 | export const nullableJsonColumn = (name: string) => column(name, "json").nullable(); |
| 31 | export const dateColumn = (name: string) => column(name, "timestamp"); |
| 32 |