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

Function bigintColumn

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

Source from the content-addressed store, hash-verified

25export const boolColumn = (name: string, defaultValue: boolean) =>
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();

Callers 1

core-schema.tsFile · 0.85

Calls 1

columnFunction · 0.90

Tested by

no test coverage detected