// @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.users_storage */ export type UsersStorageUserStorageId = string & { __brand: 'public.users_storage' }; /** Represents the table public.users_storage */ export default interface UsersStorageTable { user_storage_id: ColumnType; userId: ColumnType; storageId: ColumnType; from_admin: ColumnType; } export type UsersStorage = Selectable; export type NewUsersStorage = Insertable; export type UsersStorageUpdate = Updateable;