- Updated enum definitions in PaymentStatusEnum and TipologiaPosizioneEnum to use single quotes and consistent formatting. - Refactored Payments, Prezziario, Ratelimiter, Servizio, and other schema files to ensure consistent indentation and formatting. - Added `updated_at` field to various queries in interests and servizio controllers. - Removed unused imageCache utility file.
20 lines
777 B
TypeScript
20 lines
777 B
TypeScript
// @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>;
|