// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { UsersId } from './Users'; import type { PrezziarioIdprezziario } from './Prezziario'; import type { ServizioServizioId } from './Servizio'; import type { default as OrderTypeEnum } from './OrderTypeEnum'; import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely'; /** Identifier type for public.ordini */ export type OrdiniOrdineId = string & { __brand: 'public.ordini' }; /** Represents the table public.ordini */ export default interface OrdiniTable { ordine_id: ColumnType; userid: ColumnType; created_at: ColumnType; packid: ColumnType; servizio_id: ColumnType; type: ColumnType; isActive: ColumnType; } export type Ordini = Selectable; export type NewOrdini = Insertable; export type OrdiniUpdate = Updateable;