infoalloggi-monorepo/apps/infoalloggi/src/schemas/public/Interests.ts

20 lines
618 B
TypeScript
Raw Normal View History

2025-08-04 17:45:44 +02:00
// @generated
// This file is automatically generated by Kanel. Do not modify manually.
import type { AnnunciId } from './Annunci';
import type { UsersId } from './Users';
import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely';
/** Represents the table public.interests */
export default interface InterestsTable {
annuncioId: ColumnType<AnnunciId, AnnunciId, AnnunciId>;
userId: ColumnType<UsersId, UsersId, UsersId>;
}
export type Interests = Selectable<InterestsTable>;
export type NewInterests = Insertable<InterestsTable>;
export type InterestsUpdate = Updateable<InterestsTable>;