mirror of
https://github.com/immich-app/immich.git
synced 2025-01-07 20:36:48 +01:00
26 lines
607 B
TypeScript
26 lines
607 B
TypeScript
import { UserEntity } from 'src/entities/user.entity';
|
|
import { Column, CreateDateColumn, Entity, ManyToOne, PrimaryGeneratedColumn, UpdateDateColumn } from 'typeorm';
|
|
|
|
@Entity('api_keys')
|
|
export class APIKeyEntity {
|
|
@PrimaryGeneratedColumn('uuid')
|
|
id!: string;
|
|
|
|
@Column()
|
|
name!: string;
|
|
|
|
@Column({ select: false })
|
|
key?: string;
|
|
|
|
@ManyToOne(() => UserEntity, { onUpdate: 'CASCADE', onDelete: 'CASCADE' })
|
|
user?: UserEntity;
|
|
|
|
@Column()
|
|
userId!: string;
|
|
|
|
@CreateDateColumn({ type: 'timestamptz' })
|
|
createdAt!: Date;
|
|
|
|
@UpdateDateColumn({ type: 'timestamptz' })
|
|
updatedAt!: Date;
|
|
}
|