dev: remove index

This commit is contained in:
Alex Tran 2023-08-10 14:52:14 -05:00
parent a85780c930
commit 4a34198b78

View file

@ -22,7 +22,6 @@ export class RuleEntity {
@Column()
albumId!: string;
@Index('IDX_smartAlbumPolicy_albumId')
@ManyToOne(() => AlbumEntity, (album) => album.rules, { onDelete: 'CASCADE', onUpdate: 'CASCADE' })
album!: AlbumEntity;
}