From 2ffa64e0b88f73c531b61afd590b7be3d8bfa6bc Mon Sep 17 00:00:00 2001 From: wyu <kknd09321@nate.com> Date: 화, 23 11월 2021 20:52:37 +0900 Subject: [PATCH] 이슈 상세 연관,하위 테이블 표시 설정 - [프론트] --- src/main/resources/migration/V1_11__Alter_Table.sql | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/src/main/resources/migration/V1_11__Alter_Table.sql b/src/main/resources/migration/V1_11__Alter_Table.sql index e2de0ac..f4f4ac6 100644 --- a/src/main/resources/migration/V1_11__Alter_Table.sql +++ b/src/main/resources/migration/V1_11__Alter_Table.sql @@ -152,6 +152,7 @@ `issue_id` bigint(20) NOT NULL, `hosting_id` bigint(20) DEFAULT NULL, `name` VARCHAR(50) NULL, + `code` VARCHAR(50) NULL, `manager` VARCHAR(50) NULL, `tel` VARCHAR (50) NULL, `email` VARCHAR (255) NULL, @@ -169,6 +170,7 @@ `issue_id` bigint(20) NOT NULL, `isp_id` bigint(20) DEFAULT NULL, `name` VARCHAR(50) NULL, + `code` VARCHAR(50) NULL, `manager` VARCHAR(50) NULL, `tel` VARCHAR (50) NULL, `email` VARCHAR (255) NULL, @@ -180,3 +182,8 @@ PRIMARY KEY (`id`) USING BTREE, INDEX `ispIdIndex` (`isp_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- �씠�뒋 �뀒�씠釉� ���엯 �꽕�젙(1: 硫붿씤, 2: �뿰愿�, 3: �븯�쐞) +ALTER TABLE `issue_table_config` ADD COLUMN `issue_id` BIGINT(20) NOT NULL; +ALTER TABLE `issue_table_config` ADD COLUMN `issue_table_type` INT(11) NOT NULL; +ALTER TABLE `issue_table_config` ADD INDEX `issueTableTypeIndex`(`issue_table_type`); -- Gitblit v1.8.0