infoalloggi-monorepo/apps/infoalloggi/src/schemas/public/TestiEStringhe.ts

21 lines
777 B
TypeScript
Raw Normal View History

2025-08-04 17:45:44 +02:00
// @generated
// This file is automatically generated by Kanel. Do not modify manually.
import type { ColumnType, Selectable, Insertable, 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<string | null, string | null, string | null>;
}
export type TestiEStringhe = Selectable<TestiEStringheTable>;
export type NewTestiEStringhe = Insertable<TestiEStringheTable>;
export type TestiEStringheUpdate = Updateable<TestiEStringheTable>;