🐛 ipAppr 50자리 오류 발생 가능성 있어서 100자리로 변경

This commit is contained in:
kimjaeyeol
2021-12-30 17:22:44 +09:00
parent c62eb513e4
commit e4dbf82431

View File

@@ -49,7 +49,7 @@ public class PostsRead {
/**
* ip 주소
*/
@Column(nullable = false, columnDefinition = "varchar(50)")
@Column(nullable = false, columnDefinition = "varchar(100)")
private String ipAddr;
/**