// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { UsersId } from './Users'; import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely'; /** Identifier type for public.emails */ export type EmailsIdEmail = number & { __brand: 'public.emails' }; /** Represents the table public.emails */ export default interface EmailsTable { id_email: ColumnType; user_id: ColumnType; created_at: ColumnType; data: ColumnType; } export type Emails = Selectable; export type NewEmails = Insertable; export type EmailsUpdate = Updateable;