From d89fc967896533452b89f114fe246f9db1c81ff5 Mon Sep 17 00:00:00 2001 From: KwonJuHwan <118177454+KwonJuHwan@users.noreply.github.com> Date: Sat, 11 May 2024 00:46:02 +0900 Subject: [PATCH] =?UTF-8?q?[fix]=20DDL=20=EC=96=B8=EC=96=B4=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../resources/db/migration/V30__Add_studyComment_table.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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,