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'); + }); + } +};