From 49d68e3b3ef093dc8cde642b83ab5d8d50e9290f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Thu, 5 Feb 2026 10:50:18 +0900 Subject: [PATCH] =?UTF-8?q?fix:=EC=9D=B4=EB=A0=A5=20=ED=85=8C=EC=9D=B4?= =?UTF-8?q?=EB=B8=94=20=EB=A7=88=EC=9D=B4=EA=B7=B8=EB=A0=88=EC=9D=B4?= =?UTF-8?q?=EC=85=98=20=EA=B8=B0=EC=A1=B4=20=ED=85=8C=EC=9D=B4=EB=B8=94=20?= =?UTF-8?q?=EC=B6=A9=EB=8F=8C=20=EB=B0=A9=EC=A7=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 이전 실행에서 테이블만 생성되고 FK 추가 실패한 상태 대응 - dropIfExists 추가하여 재실행 가능하도록 수정 Co-Authored-By: Claude Opus 4.5 --- ...200100_create_barobill_card_transaction_amount_logs_table.php | 1 + 1 file changed, 1 insertion(+) diff --git a/database/migrations/2026_02_05_200100_create_barobill_card_transaction_amount_logs_table.php b/database/migrations/2026_02_05_200100_create_barobill_card_transaction_amount_logs_table.php index 5f3f710..3ba303b 100644 --- a/database/migrations/2026_02_05_200100_create_barobill_card_transaction_amount_logs_table.php +++ b/database/migrations/2026_02_05_200100_create_barobill_card_transaction_amount_logs_table.php @@ -11,6 +11,7 @@ */ public function up(): void { + Schema::dropIfExists('barobill_card_transaction_amount_logs'); Schema::create('barobill_card_transaction_amount_logs', function (Blueprint $table) { $table->id(); $table->unsignedBigInteger('card_transaction_id')->comment('카드 거래 ID');