From 367c498ea88844fd36079b46a9f7c7f5d0a9c1cd Mon Sep 17 00:00:00 2001 From: jhjang <jhjang@maprex.co.kr> Date: 월, 27 12월 2021 10:33:53 +0900 Subject: [PATCH] - api 이슈 변경시 워크플로우에 포함된 상태로만 변경가능하도록 수정 --- 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 734f6c7..9cca17d 100644 --- a/src/main/resources/migration/V1_10__Alter_Table.sql +++ b/src/main/resources/migration/V1_10__Alter_Table.sql @@ -1,11 +1,10 @@ ALTER TABLE `user` DROP COLUMN `permission`; ALTER TABLE `user` ADD COLUMN `level_id` BIGINT(11) NULL; -ALTER TABLE `user` ADD COLUMN `department_id` BIGINT(11) NULL; -CREATE TABLE `department_manage`( +CREATE TABLE `department`( `id` BIGINT(11) AUTO_INCREMENT, `department_name` VARCHAR(50) NOT NULL, - `department_description` VARCHAR(255) NOT NULL, + `department_description` VARCHAR(255) NULL, `register_id` BIGINT(20) NOT NULL, `register_date` TIMESTAMP NULL, `modify_id` BIGINT(20) NOT NULL, -- Gitblit v1.8.0