Skip to content

Commit

Permalink
fix: 음원 데이터 titlelength100 으로 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
kor-Chipmunk committed Feb 15, 2024
1 parent 6fadd1b commit 8310681
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class AlbumEntity extends BaseTimeEntity {
@GeneratedValue(strategy = GenerationType.IDENTITY)
Long id;

@Column(nullable = false, length = 50, columnDefinition = "VARCHAR(50) default ''")
@Column(nullable = false, length = 100, columnDefinition = "VARCHAR(100) default ''")
String title;

@Column(name = "cover_url", nullable = false, columnDefinition = "VARCHAR(255) default ''")
Expand Down

0 comments on commit 8310681

Please sign in to comment.