// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely'; /** Identifier type for public.nazioni */ export type NazioniId = number & { __brand: 'public.nazioni' }; /** Represents the table public.nazioni */ export default interface NazioniTable { id: ColumnType; nome: ColumnType; catasto: ColumnType; } export type Nazioni = Selectable; export type NewNazioni = Insertable; export type NazioniUpdate = Updateable;