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

20 lines
698 B
TypeScript
Raw Normal View History

// @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<UsersId, UsersId, UsersId>;
etichettaId: ColumnType<EtichetteIdEtichetta, EtichetteIdEtichetta, EtichetteIdEtichetta>;
}
export type UserEtichette = Selectable<UserEtichetteTable>;
export type NewUserEtichette = Insertable<UserEtichetteTable>;
export type UserEtichetteUpdate = Updateable<UserEtichetteTable>;