// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { UsersId } from './Users'; import type { UsersStorageUserStorageId } from './UsersStorage'; import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely'; /** 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; userid: ColumnType; luogo_nascita: ColumnType; data_nascita: ColumnType; 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; doc_personale_fronte_ref: ColumnType; doc_personale_retro_ref: ColumnType; } export type UsersAnagrafica = Selectable; export type NewUsersAnagrafica = Insertable; export type UsersAnagraficaUpdate = Updateable;