// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely'; /** Identifier type for public.users */ export type UsersId = string; /** Represents the table public.users */ export default interface UsersTable { id: ColumnType; username: ColumnType; password: ColumnType; email: ColumnType; lastLogin: ColumnType; createdAt: ColumnType; } export type Users = Selectable; export type NewUsers = Insertable; export type UsersUpdate = Updateable;