From c2c19249d778932ccdecdcc33d704cc5841e966a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Tue, 3 Feb 2026 07:47:56 +0900 Subject: [PATCH] =?UTF-8?q?feat:barobill=5Fmembers=20=ED=85=8C=EC=9D=B4?= =?UTF-8?q?=EB=B8=94=EC=97=90=20server=5Fmode=20=EC=BB=AC=EB=9F=BC=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 회원사별로 바로빌 테스트/운영 서버를 개별 설정할 수 있도록 컬럼 추가 - server_mode: enum('test', 'production'), 기본값 'test' Co-Authored-By: Claude Opus 4.5 --- ..._server_mode_to_barobill_members_table.php | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 database/migrations/2026_02_03_100000_add_server_mode_to_barobill_members_table.php diff --git a/database/migrations/2026_02_03_100000_add_server_mode_to_barobill_members_table.php b/database/migrations/2026_02_03_100000_add_server_mode_to_barobill_members_table.php new file mode 100644 index 0000000..e5c76f1 --- /dev/null +++ b/database/migrations/2026_02_03_100000_add_server_mode_to_barobill_members_table.php @@ -0,0 +1,31 @@ +enum('server_mode', ['test', 'production']) + ->default('test') + ->after('status') + ->comment('바로빌 서버 모드 (test: 테스트서버, production: 운영서버)'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('barobill_members', function (Blueprint $table) { + $table->dropColumn('server_mode'); + }); + } +};