From f87d487fcaddec01fe5a9d860f75fa691618cf78 Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 목, 11 11월 2021 16:12:00 +0900 Subject: [PATCH] 사용자의 부서 수정 기능 프론트 --- src/main/resources/migration/V1_11__Alter_Table.sql | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/migration/V1_11__Alter_Table.sql b/src/main/resources/migration/V1_11__Alter_Table.sql index 9842a12..bb9d896 100644 --- a/src/main/resources/migration/V1_11__Alter_Table.sql +++ b/src/main/resources/migration/V1_11__Alter_Table.sql @@ -45,8 +45,8 @@ CREATE TABLE `user_department`( `id` BIGINT(11) AUTO_INCREMENT, - `department_id` VARCHAR(50) NULL, - `user_id` VARCHAR(50) NULL, + `department_id` BIGINT(11), + `user_id` BIGINT(11), `register_id` BIGINT(20) NOT NULL, `register_date` TIMESTAMP NULL, `modify_id` BIGINT(20) NOT NULL, -- Gitblit v1.8.0