20 lines
791 B
TypeScript
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>;
|