// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { ColumnType, Insertable, Selectable, Updateable } from "kysely"; /** Identifier type for public.testi_e_stringhe */ export type TestiEStringheStingaId = string & { __brand: "public.testi_e_stringhe"; }; /** Represents the table public.testi_e_stringhe */ export default interface TestiEStringheTable { stinga_id: ColumnType< TestiEStringheStingaId, TestiEStringheStingaId, TestiEStringheStingaId >; stringa_value: ColumnType; } export type TestiEStringhe = Selectable; export type NewTestiEStringhe = Insertable; export type TestiEStringheUpdate = Updateable;