change readonly default to follow migration

This commit is contained in:
mgabor
2024-04-16 23:05:22 +02:00
parent af6c077035
commit da5990bcc0

View File

@@ -17,6 +17,6 @@ export class AlbumUserEntity {
@ManyToOne(() => UserEntity, { onDelete: 'CASCADE', onUpdate: 'CASCADE', nullable: false })
user!: UserEntity;
@Column({ default: false })
@Column({ default: true })
readonly!: boolean;
}