diff --git a/database/migrations/2026_03_09_230000_drop_codebridge_tables_from_sam.php b/database/migrations/2026_03_09_230000_drop_codebridge_tables_from_sam.php new file mode 100644 index 0000000..54e4612 --- /dev/null +++ b/database/migrations/2026_03_09_230000_drop_codebridge_tables_from_sam.php @@ -0,0 +1,108 @@ +tables as $table) { + Schema::dropIfExists($table); + } + + DB::statement('SET FOREIGN_KEY_CHECKS = 1'); + } + + public function down(): void + { + // 복원은 백업 파일로 수행 + // mysql -u codebridge -p sam < ~/backups/sam_codebridge_tables_20260309.sql + } +};