// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { ColumnType, Insertable, Selectable, Updateable } from "kysely"; import type { ChatsChatid } from "./Chats"; import type { EtichetteIdEtichetta } from "./Etichette"; /** Represents the table public.chats_etichette */ export default interface ChatsEtichetteTable { chatid: ColumnType; etichettaid: ColumnType< EtichetteIdEtichetta, EtichetteIdEtichetta, EtichetteIdEtichetta >; } export type ChatsEtichette = Selectable; export type NewChatsEtichette = Insertable; export type ChatsEtichetteUpdate = Updateable;