// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { ColumnType, Insertable, Selectable, Updateable } from "kysely"; import type { UsersId } from "./Users"; /** Identifier type for public.chats */ export type ChatsChatid = string & { __brand: "public.chats" }; /** Represents the table public.chats */ export default interface ChatsTable { chatid: ColumnType; created_at: ColumnType; user_ref: ColumnType; tags: ColumnType; } export type Chats = Selectable; export type NewChats = Insertable; export type ChatsUpdate = Updateable;