infoalloggi-monorepo/apps/infoalloggi/src/schemas/public/UsersStorage.ts

20 lines
665 B
TypeScript
Raw Normal View History

2025-08-04 17:45:44 +02:00
// @generated
// This file is automatically generated by Kanel. Do not modify manually.
2025-08-29 16:18:32 +02:00
import type { ColumnType, Insertable, Selectable, Updateable } from "kysely";
import type { StorageindexId } from "./Storageindex";
import type { UsersId } from "./Users";
2025-08-04 17:45:44 +02:00
/** Represents the table public.users_storage */
export default interface UsersStorageTable {
2025-08-29 16:18:32 +02:00
userid: ColumnType<UsersId, UsersId, UsersId>;
2025-08-04 17:45:44 +02:00
2025-08-29 16:18:32 +02:00
storageid: ColumnType<StorageindexId, StorageindexId, StorageindexId>;
2025-08-04 17:45:44 +02:00
}
export type UsersStorage = Selectable<UsersStorageTable>;
export type NewUsersStorage = Insertable<UsersStorageTable>;
export type UsersStorageUpdate = Updateable<UsersStorageTable>;