From 48fc1ca070da39739e35fa573d8c51e47cc694b9 Mon Sep 17 00:00:00 2001 From: wyu <kknd09321@nate.com> Date: 목, 04 11월 2021 14:42:00 +0900 Subject: [PATCH] 사용자 등급 권한 수정 변경 --- src/main/resources/migration/V1_10__Alter_Table.sql | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/src/main/resources/migration/V1_10__Alter_Table.sql b/src/main/resources/migration/V1_10__Alter_Table.sql index dedf1fe..94a4154 100644 --- a/src/main/resources/migration/V1_10__Alter_Table.sql +++ b/src/main/resources/migration/V1_10__Alter_Table.sql @@ -21,5 +21,8 @@ `register_date` TIMESTAMP NULL COMMENT 'register_date', `modify_id` BIGINT(20) NOT NULL COMMENT 'modify_id', `modify_date` TIMESTAMP NULL COMMENT 'modify_date', + `default_yn` VARCHAR (1) NOT NULL DEFAULT 'N', + `basic_user` VARCHAR (1) NOT NULL DEFAULT 'N', PRIMARY KEY (`id`) USING btree -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; \ No newline at end of file +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + -- Gitblit v1.8.0