2025-08-04 17:45:44 +02:00
|
|
|
// @generated
|
|
|
|
|
// This file is automatically generated by Kanel. Do not modify manually.
|
|
|
|
|
|
2025-10-21 18:42:03 +02:00
|
|
|
import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely';
|
2025-08-04 17:45:44 +02:00
|
|
|
|
|
|
|
|
/** Identifier type for public.testi_e_stringhe */
|
2025-10-21 18:42:03 +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-10-21 18:42:03 +02:00
|
|
|
stinga_id: ColumnType<TestiEStringheStingaId, TestiEStringheStingaId, TestiEStringheStingaId>;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-10-21 18:42:03 +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>;
|