20 lines
722 B
TypeScript
20 lines
722 B
TypeScript
|
|
// @generated
|
||
|
|
// This file is automatically generated by Kanel. Do not modify manually.
|
||
|
|
|
||
|
|
import type { ChatsChatid } from './Chats';
|
||
|
|
import type { EtichetteIdEtichetta } from './Etichette';
|
||
|
|
import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely';
|
||
|
|
|
||
|
|
/** Represents the table public.chats_etichette */
|
||
|
|
export default interface ChatsEtichetteTable {
|
||
|
|
chatid: ColumnType<ChatsChatid, ChatsChatid, ChatsChatid>;
|
||
|
|
|
||
|
|
etichettaid: ColumnType<EtichetteIdEtichetta, EtichetteIdEtichetta, EtichetteIdEtichetta>;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type ChatsEtichette = Selectable<ChatsEtichetteTable>;
|
||
|
|
|
||
|
|
export type NewChatsEtichette = Insertable<ChatsEtichetteTable>;
|
||
|
|
|
||
|
|
export type ChatsEtichetteUpdate = Updateable<ChatsEtichetteTable>;
|