// @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.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;