2025-08-04 17:45:44 +02:00
|
|
|
// @generated
|
|
|
|
|
// This file is automatically generated by Kanel. Do not modify manually.
|
|
|
|
|
|
2025-10-21 18:42:03 +02:00
|
|
|
import type { UsersId } from './Users';
|
|
|
|
|
import type { StorageindexId } from './Storageindex';
|
|
|
|
|
import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely';
|
2025-08-04 17:45:44 +02:00
|
|
|
|
|
|
|
|
/** Represents the table public.users_storage */
|
|
|
|
|
export default interface UsersStorageTable {
|
2025-10-21 18:42:03 +02:00
|
|
|
userid: ColumnType<UsersId, UsersId, UsersId>;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-10-21 18:42:03 +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>;
|