Skip to content

Commit

Permalink
Refactor [#31] Homework 엔티티에서 숙제 설명에 잘못된 명칭 사용 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kych4n committed Jan 12, 2025
1 parent e511d02 commit 1fd23ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public class Homework {
private LocalDateTime deadline;

@Lob
@Column(name = "discription", nullable = false, length = 300)
@Column(name = "description", nullable = false, length = 300)
private String description;

@OneToMany(mappedBy = "homework", cascade = CascadeType.ALL, orphanRemoval = true)
Expand Down

0 comments on commit 1fd23ea

Please sign in to comment.