© 2026 Hedgehog Software, LLC
export const userId = char("user_id", { length: 10, }).references(() => users.id);
user_id: ColumnType<string, string, string>;
export const userId = (name?: string) => { return char(name ?? "user_id", { length: 10, }).references(() => users.id); };
[x: string]: ColumnType<string | null, string, string>;