// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely'; /** Represents the table public.images_refs */ export default interface ImagesRefsTable { codice: ColumnType; ordine: ColumnType; img: ColumnType; thumb: ColumnType; og_url: ColumnType; } export type ImagesRefs = Selectable; export type NewImagesRefs = Insertable; export type ImagesRefsUpdate = Updateable;