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