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 { AnnunciId } from './Annunci';
|
|
|
|
|
import type { UsersId } from './Users';
|
|
|
|
|
import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely';
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-08-05 16:21:27 +02:00
|
|
|
/** Represents the table public.servizio_interessi */
|
|
|
|
|
export default interface ServizioInteressiTable {
|
2025-10-21 18:42:03 +02:00
|
|
|
annuncioId: ColumnType<AnnunciId, AnnunciId, AnnunciId>;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-10-21 18:42:03 +02:00
|
|
|
userId: ColumnType<UsersId, UsersId, UsersId>;
|
2025-08-04 17:45:44 +02:00
|
|
|
}
|
|
|
|
|
|
2025-08-05 16:21:27 +02:00
|
|
|
export type ServizioInteressi = Selectable<ServizioInteressiTable>;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-08-05 16:21:27 +02:00
|
|
|
export type NewServizioInteressi = Insertable<ServizioInteressiTable>;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-08-05 16:21:27 +02:00
|
|
|
export type ServizioInteressiUpdate = Updateable<ServizioInteressiTable>;
|