// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { ColumnType, Insertable, Selectable, Updateable } from "kysely"; import type { StorageindexId } from "./Storageindex"; import type { UsersId } from "./Users"; /** Represents the table public.users_storage */ export default interface UsersStorageTable { userid: ColumnType; storageid: ColumnType; } export type UsersStorage = Selectable; export type NewUsersStorage = Insertable; export type UsersStorageUpdate = Updateable;