import type { ChatsChatid } from './Chats'; import type { EtichetteIdEtichetta } from './Etichette'; import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely'; /** Represents the table public.chats_etichette */ export default interface ChatsEtichetteTable { chatid: ColumnType; etichettaid: ColumnType; } export type ChatsEtichette = Selectable; export type NewChatsEtichette = Insertable; export type ChatsEtichetteUpdate = Updateable;