- 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.
24 lines
843 B
TypeScript
24 lines
843 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.event_queue */
|
|
export type EventQueueEventId = number & { __brand: 'public.event_queue' };
|
|
|
|
/** Represents the table public.event_queue */
|
|
export default interface EventQueueTable {
|
|
event_id: ColumnType<EventQueueEventId, EventQueueEventId | undefined, EventQueueEventId>;
|
|
|
|
lock_expires: ColumnType<Date, Date | string, Date | string>;
|
|
|
|
data: ColumnType<unknown | null, unknown | null, unknown | null>;
|
|
|
|
status: ColumnType<string, string | undefined, string>;
|
|
}
|
|
|
|
export type EventQueue = Selectable<EventQueueTable>;
|
|
|
|
export type NewEventQueue = Insertable<EventQueueTable>;
|
|
|
|
export type EventQueueUpdate = Updateable<EventQueueTable>;
|