// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { ColumnType, Insertable, Selectable, Updateable } from "kysely"; /** Identifier type for public.etichette */ export type EtichetteIdEtichetta = number & { __brand: "public.etichette" }; /** Represents the table public.etichette */ export default interface EtichetteTable { id_etichetta: ColumnType< EtichetteIdEtichetta, EtichetteIdEtichetta | undefined, EtichetteIdEtichetta >; title: ColumnType; color_hex: ColumnType; } export type Etichette = Selectable; export type NewEtichette = Insertable; export type EtichetteUpdate = Updateable;