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

Function nullableBigintColumn

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

Source from the content-addressed store, hash-verified

26 column(name, "bool").defaultTo(defaultValue);
27export const bigintColumn = (name: string) => column(name, "bigint");
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");

Callers 1

core-schema.tsFile · 0.85

Calls 2

columnFunction · 0.90
nullableMethod · 0.80

Tested by

no test coverage detected