post에 댓글 컬럼을 추가하기@ColumnDefault("0")private int commentCount; 정상적으로 추가가 된 것을 확인할 수 있다.Hibernate: alter table if exists community_post add column comment_count integer default 0 not null post에 commentcount 추가하는 쿼리 추가 @Modifying @Query(value = "UPDATE PostEntity p " + "SET p.commentCount = p.commentCount + 1 , " + "p.updateDate = now() " + "WHERE..