diff --git a/src/main/resources/db/migration/V30__Add_studyComment_table.sql b/src/main/resources/db/migration/V30__Add_studyComment_table.sql index 6e2befa5..f2632a92 100644 --- a/src/main/resources/db/migration/V30__Add_studyComment_table.sql +++ b/src/main/resources/db/migration/V30__Add_studyComment_table.sql @@ -1,9 +1,9 @@ CREATE TABLE study_comment ( id BIGINT AUTO_INCREMENT NOT NULL, - created_at DATETIME NULL, - updated_at DATETIME NULL, - deleted_at DATETIME NULL, + created_at datetime NULL, + updated_at datetime NULL, + deleted_at datetime NULL, study_id BIGINT NOT NULL, member_id BIGINT NOT NULL, content VARCHAR(255) NOT NULL,