From bea07d3ad5c832426680325f1112538feda04e50 Mon Sep 17 00:00:00 2001 From: wyu <kknd09321@nate.com> Date: 화, 09 11월 2021 10:08:43 +0900 Subject: [PATCH] ISP, Hosting 백엔드 추가 및 부서 수정 --- src/main/resources/migration/V1_10__Alter_Table.sql | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main/resources/migration/V1_10__Alter_Table.sql b/src/main/resources/migration/V1_10__Alter_Table.sql index c65a167..be68bc8 100644 --- a/src/main/resources/migration/V1_10__Alter_Table.sql +++ b/src/main/resources/migration/V1_10__Alter_Table.sql @@ -4,13 +4,12 @@ CREATE TABLE `department_manage`( `id` BIGINT(11) AUTO_INCREMENT, - `department_name` VARCHAR(50) NOT NULL, - `department_description` VARCHAR(255) NOT NULL, + `department_name` VARCHAR(50) NULL, + `department_description` VARCHAR(255) NULL, `register_id` BIGINT(20) NOT NULL, `register_date` TIMESTAMP NULL, `modify_id` BIGINT(20) NOT NULL, `modify_date` TIMESTAMP NULL, - `default_department` VARCHAR (50) NULL DEFAULT '遺��꽌 �뾾�쓬', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Gitblit v1.8.0