From c8d436c6d85ea6f1e93c838a8b5a4690d0f075e4 Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 금, 12 11월 2021 10:43:12 +0900 Subject: [PATCH] Merge branch 'master' of http://192.168.0.25:9001/r/owl-kisa --- src/main/resources/migration/V1_11__Alter_Table.sql | 12 +++++++++++- 1 files changed, 11 insertions(+), 1 deletions(-) diff --git a/src/main/resources/migration/V1_11__Alter_Table.sql b/src/main/resources/migration/V1_11__Alter_Table.sql index 461b734..bb9d896 100644 --- a/src/main/resources/migration/V1_11__Alter_Table.sql +++ b/src/main/resources/migration/V1_11__Alter_Table.sql @@ -30,7 +30,7 @@ CREATE TABLE `hosting_field`( `id` BIGINT(11) AUTO_INCREMENT, - `code` varchar (50) NOT NULL, + `code` VARCHAR(50) NOT NULL, `name` VARCHAR(50) NOT NULL, `manager` VARCHAR(50) NULL, `tel` VARCHAR (50) NULL, @@ -43,3 +43,13 @@ PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; +CREATE TABLE `user_department`( + `id` BIGINT(11) AUTO_INCREMENT, + `department_id` BIGINT(11), + `user_id` BIGINT(11), + `register_id` BIGINT(20) NOT NULL, + `register_date` TIMESTAMP NULL, + `modify_id` BIGINT(20) NOT NULL, + `modify_date` TIMESTAMP NULL, + PRIMARY KEY (`id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; \ No newline at end of file -- Gitblit v1.8.0