// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { ColumnType, Insertable, Selectable, Updateable } from "kysely"; import type { UsersId } from "./Users"; /** 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;