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

24 lines
729 B
TypeScript
Raw Normal View History

2025-08-04 17:45:44 +02:00
// @generated
// This file is automatically generated by Kanel. Do not modify manually.
2025-08-29 16:18:32 +02:00
import type { ColumnType, Insertable, Selectable, Updateable } from "kysely";
import type { ChatsChatid } from "./Chats";
import type { EtichetteIdEtichetta } from "./Etichette";
2025-08-04 17:45:44 +02:00
/** Represents the table public.chats_etichette */
export default interface ChatsEtichetteTable {
2025-08-29 16:18:32 +02:00
chatid: ColumnType<ChatsChatid, ChatsChatid, ChatsChatid>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
etichettaid: ColumnType<
EtichetteIdEtichetta,
EtichetteIdEtichetta,
EtichetteIdEtichetta
>;
2025-08-04 17:45:44 +02:00
}
export type ChatsEtichette = Selectable<ChatsEtichetteTable>;
export type NewChatsEtichette = Insertable<ChatsEtichetteTable>;
export type ChatsEtichetteUpdate = Updateable<ChatsEtichetteTable>;