// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { ColumnType, Insertable, Selectable, Updateable } from "kysely"; import type { UsersId } from "./Users"; /** Identifier type for public.users_anagrafica */ export type UsersAnagraficaIdanagrafica = string & { __brand: "public.users_anagrafica"; }; /** Represents the table public.users_anagrafica */ export default interface UsersAnagraficaTable { idanagrafica: ColumnType< UsersAnagraficaIdanagrafica, UsersAnagraficaIdanagrafica | undefined, UsersAnagraficaIdanagrafica >; userid: ColumnType; luogo_nascita: ColumnType; data_nascita: ColumnType< Date | null, Date | string | null, Date | string | null >; nazione_nascita: ColumnType; codice_fiscale: ColumnType; via_residenza: ColumnType; civico_residenza: ColumnType; comune_residenza: ColumnType; provincia_residenza: ColumnType; cap_residenza: ColumnType; nazione_residenza: ColumnType; sesso: ColumnType; azienda: ColumnType; ragione_sociale: ColumnType; sede_legale: ColumnType; p_iva: ColumnType; fatturazione_aziendale: ColumnType; codice_destinatario: ColumnType; legale_rappresentante: ColumnType< string | null, string | null, string | null >; } export type UsersAnagrafica = Selectable; export type NewUsersAnagrafica = Insertable; export type UsersAnagraficaUpdate = Updateable;