infoalloggi-monorepo/apps/infoalloggi/src/schemas/public/UsersStorage.ts
Marco Pedone 8fe0b6636d Refactor TypeScript schemas and enums for consistency and readability
- 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.
2025-10-21 18:42:03 +02:00

19 lines
667 B
TypeScript

// @generated
// This file is automatically generated by Kanel. Do not modify manually.
import type { UsersId } from './Users';
import type { StorageindexId } from './Storageindex';
import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely';
/** Represents the table public.users_storage */
export default interface UsersStorageTable {
userid: ColumnType<UsersId, UsersId, UsersId>;
storageid: ColumnType<StorageindexId, StorageindexId, StorageindexId>;
}
export type UsersStorage = Selectable<UsersStorageTable>;
export type NewUsersStorage = Insertable<UsersStorageTable>;
export type UsersStorageUpdate = Updateable<UsersStorageTable>;