// @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 = number & { __brand: 'public.users' }; /** Represents the table public.users */ export default interface UsersTable { id: ColumnType; username: ColumnType; password: ColumnType; email: ColumnType; last_login: ColumnType; created_at: ColumnType; } export type Users = Selectable; export type NewUsers = Insertable; export type UsersUpdate = Updateable;