// @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; userId: ColumnType; } export type Interests = Selectable; export type NewInterests = Insertable; export type InterestsUpdate = Updateable;