// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { UsersId } from "./Users"; import type { MessagesId } from "./Messages"; import type { ColumnType, Selectable, Insertable, Updateable } from "kysely"; /** Identifier type for public.facts */ export type FactsId = number & { __brand: "public.facts" }; /** Represents the table public.facts */ export default interface FactsTable { id: ColumnType; user_id: ColumnType; source_message_id: ColumnType< MessagesId | null, MessagesId | null, MessagesId | null >; content: ColumnType; created_at: ColumnType; } export type Facts = Selectable; export type NewFacts = Insertable; export type FactsUpdate = Updateable;