24 lines
664 B
TypeScript
24 lines
664 B
TypeScript
|
|
// @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<string, string, string>;
|
||
|
|
|
||
|
|
ordine: ColumnType<number, number, number>;
|
||
|
|
|
||
|
|
img: ColumnType<string, string, string>;
|
||
|
|
|
||
|
|
thumb: ColumnType<string, string, string>;
|
||
|
|
|
||
|
|
og_url: ColumnType<string, string, string>;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type ImagesRefs = Selectable<ImagesRefsTable>;
|
||
|
|
|
||
|
|
export type NewImagesRefs = Insertable<ImagesRefsTable>;
|
||
|
|
|
||
|
|
export type ImagesRefsUpdate = Updateable<ImagesRefsTable>;
|