Skip to content

Commit fc7418c

Browse files
committed
Refactor: originUrl 길이 제한 2083으로 변경
1 parent b554ab0 commit fc7418c

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/young/shortenerurl/url/model

1 file changed

+1
-1
lines changed

src/main/java/com/young/shortenerurl/url/model/Url.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class Url {
2222
@GeneratedValue(strategy = GenerationType.IDENTITY)
2323
private Long id;
2424

25-
@Column(length = 1000, nullable = false, updatable = false)
25+
@Column(length = 2083, nullable = false, updatable = false)
2626
private String originUrl;
2727

2828
@Embedded

0 commit comments

Comments
 (0)