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

21 lines
655 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.
import type { UsersId } from './Users';
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-24 16:10:59 +02:00
userId: ColumnType<UsersId, UsersId, UsersId>;
2025-08-04 17:45:44 +02:00
2025-10-24 16:10:59 +02:00
storageId: ColumnType<string, string, string>;
from_admin: ColumnType<boolean, boolean | undefined, boolean>;
2025-08-04 17:45:44 +02:00
}
export type UsersStorage = Selectable<UsersStorageTable>;
export type NewUsersStorage = Insertable<UsersStorageTable>;
export type UsersStorageUpdate = Updateable<UsersStorageTable>;