mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
chore: remove exif entity (#17499)
This commit is contained in:
parent
8aea07b750
commit
7a1e8ce6d8
10 changed files with 44 additions and 76 deletions
|
|
@ -1,3 +1,5 @@
|
|||
import { Selectable } from 'kysely';
|
||||
import { Exif as DatabaseExif } from 'src/db';
|
||||
import { AlbumUserRole, AssetStatus, AssetType, MemoryType, Permission, UserStatus } from 'src/enum';
|
||||
import { OnThisDayData, UserMetadataItem } from 'src/types';
|
||||
|
||||
|
|
@ -189,6 +191,8 @@ export type Session = {
|
|||
deviceType: string;
|
||||
};
|
||||
|
||||
export type Exif = Omit<Selectable<DatabaseExif>, 'updatedAt' | 'updateId'>;
|
||||
|
||||
const userColumns = ['id', 'name', 'email', 'profileImagePath', 'profileChangedAt'] as const;
|
||||
|
||||
export const columns = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue