MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / nullableJsonColumn

Function nullableJsonColumn

packages/core/sdk/src/core-schema.ts:30–30  ·  view source on GitHub ↗
(name: string)

Source from the content-addressed store, hash-verified

28export const nullableBigintColumn = (name: string) => column(name, "bigint").nullable();
29export const jsonColumn = (name: string) => column(name, "json");
30export const nullableJsonColumn = (name: string) => column(name, "json").nullable();
31export const dateColumn = (name: string) => column(name, "timestamp");
32
33// The policy callback hands us a `ConditionBuilder` typed to the specific table's

Callers 1

core-schema.tsFile · 0.85

Calls 2

columnFunction · 0.90
nullableMethod · 0.80

Tested by

no test coverage detected