// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { UsersId } from "./Users"; import type { ColumnType, Selectable, Insertable, Updateable } from "kysely"; /** Identifier type for public.conversations */ export type ConversationsId = number & { __brand: "public.conversations" }; /** Represents the table public.conversations */ export default interface ConversationsTable { id: ColumnType; title: ColumnType; created_at: ColumnType; user_id: ColumnType; } export type Conversations = Selectable; export type NewConversations = Insertable; export type ConversationsUpdate = Updateable;