// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { UsersId } from './Users'; import type { EtichetteIdEtichetta } from './Etichette'; import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely'; /** Represents the table public.user_etichette */ export default interface UserEtichetteTable { userId: ColumnType; etichettaId: ColumnType; } export type UserEtichette = Selectable; export type NewUserEtichette = Insertable; export type UserEtichetteUpdate = Updateable;