From ad26c4a082595a97c47f9619c5bde09e9812528e Mon Sep 17 00:00:00 2001
From: wyu <kknd09321@nate.com>
Date: 목, 04 11월 2021 18:15:31 +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