Update src/main/java/com/mediamanager/model/AlbumArt.java

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
Gustavo Henrique Miranda 2025-12-07 02:30:51 -03:00 committed by GitHub
parent 0aac0f2f14
commit dc1f6dfbc8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -9,10 +9,10 @@ public class AlbumArt {
@Id @Id
@GeneratedValue(strategy = GenerationType.IDENTITY) @GeneratedValue(strategy = GenerationType.IDENTITY)
Integer id; private Integer id;
@Column(nullable = false) @Column(nullable = false)
String filepath; private String filepath;
public Integer getId() { public Integer getId() {