// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely'; /** Identifier type for public.banners */ export type BannersIdbanner = string & { __brand: 'public.banners' }; /** Represents the table public.banners */ export default interface BannersTable { idbanner: ColumnType; titolo: ColumnType; testo: ColumnType; is_unskippable: ColumnType; has_cta: ColumnType; cta_href: ColumnType; cta_icon: ColumnType; cta_text: ColumnType; color: ColumnType; is_active: ColumnType; show_public: ColumnType; show_private: ColumnType; hide_duration: ColumnType; } export type Banners = Selectable; export type NewBanners = Insertable; export type BannersUpdate = Updateable;