(name: string)
| 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 | |
| 33 | // The policy callback hands us a `ConditionBuilder` typed to the specific table's |
no test coverage detected