// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { ColumnType, Insertable, Selectable, Updateable } from "kysely"; /** Identifier type for public.users */ export type UsersId = string & { __brand: "public.users" }; /** Represents the table public.users */ export default interface UsersTable { id: ColumnType; username: ColumnType; email: ColumnType; isAdmin: ColumnType; isBlocked: ColumnType; password: ColumnType; nome: ColumnType; cognome: ColumnType; created_at: ColumnType; reset_password_token: ColumnType; reset_password_expires: ColumnType< Date | null, Date | string | null, Date | string | null >; telefono: ColumnType; isAdminMade: ColumnType; isVerified: ColumnType; verificationToken: ColumnType; verificationTokenExpires: ColumnType< Date | null, Date | string | null, Date | string | null >; salt: ColumnType; } export type Users = Selectable; export type NewUsers = Insertable; export type UsersUpdate = Updateable;