diff --git a/database/migrations/2026_02_05_300000_add_is_manual_to_barobill_card_transactions_table.php b/database/migrations/2026_02_05_300000_add_is_manual_to_barobill_card_transactions_table.php new file mode 100644 index 0000000..0bd6a8a --- /dev/null +++ b/database/migrations/2026_02_05_300000_add_is_manual_to_barobill_card_transactions_table.php @@ -0,0 +1,23 @@ +boolean('is_manual')->default(false)->after('modified_tax') + ->comment('수동 입력 여부 (true: 수동입력, false: 바로빌 API)'); + }); + } + + public function down(): void + { + Schema::table('barobill_card_transactions', function (Blueprint $table) { + $table->dropColumn('is_manual'); + }); + } +};