20 lines
618 B
TypeScript
20 lines
618 B
TypeScript
|
|
// @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>;
|