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

27 lines
786 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.
2025-08-29 16:18:32 +02:00
import type { ColumnType, Insertable, Selectable, Updateable } from "kysely";
2025-08-04 17:45:44 +02:00
/** Identifier type for public.testi_e_stringhe */
2025-08-29 16:18:32 +02:00
export type TestiEStringheStingaId = string & {
__brand: "public.testi_e_stringhe";
};
2025-08-04 17:45:44 +02:00
/** Represents the table public.testi_e_stringhe */
export default interface TestiEStringheTable {
2025-08-29 16:18:32 +02:00
stinga_id: ColumnType<
TestiEStringheStingaId,
TestiEStringheStingaId,
TestiEStringheStingaId
>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
stringa_value: ColumnType<string | null, string | null, string | null>;
2025-08-04 17:45:44 +02:00
}
export type TestiEStringhe = Selectable<TestiEStringheTable>;
export type NewTestiEStringhe = Insertable<TestiEStringheTable>;
export type TestiEStringheUpdate = Updateable<TestiEStringheTable>;