// @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 = string; /** Represents the table public.facts */ export default interface FactsTable { id: ColumnType; userId: ColumnType; sourceMessageId: ColumnType; content: ColumnType; createdAt: ColumnType; } export type Facts = Selectable; export type NewFacts = Insertable; export type FactsUpdate = Updateable;