infoalloggi-monorepo/apps/infoalloggi/src/schemas/public/MiogestImagesRef.ts
2025-08-04 17:45:44 +02:00

20 lines
791 B
TypeScript

// @generated
// This file is automatically generated by Kanel. Do not modify manually.
import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely';
/** Identifier type for public.miogest_images_ref */
export type MiogestImagesRefCodice = string & { __brand: 'public.miogest_images_ref' };
/** Represents the table public.miogest_images_ref */
export default interface MiogestImagesRefTable {
codice: ColumnType<MiogestImagesRefCodice, MiogestImagesRefCodice, MiogestImagesRefCodice>;
foto: ColumnType<string[] | null, string[] | null, string[] | null>;
}
export type MiogestImagesRef = Selectable<MiogestImagesRefTable>;
export type NewMiogestImagesRef = Insertable<MiogestImagesRefTable>;
export type MiogestImagesRefUpdate = Updateable<MiogestImagesRefTable>;