From 28bf44584470a1e86ec9e4b86c3271fbf77469c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Fri, 6 Feb 2026 11:00:39 +0900 Subject: [PATCH] =?UTF-8?q?feat:=EA=B3=84=EC=A2=8C=20=EC=9E=85=EC=B6=9C?= =?UTF-8?q?=EA=B8=88=EB=82=B4=EC=97=AD=20=EC=88=98=EB=8F=99=EC=9E=85?= =?UTF-8?q?=EB=A0=A5=EC=9A=A9=20is=5Fmanual=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 barobill_bank_transactions 테이블에 is_manual boolean 컬럼 추가 Co-Authored-By: Claude Opus 4.6 --- ...al_to_barobill_bank_transactions_table.php | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 database/migrations/2026_02_06_120000_add_is_manual_to_barobill_bank_transactions_table.php diff --git a/database/migrations/2026_02_06_120000_add_is_manual_to_barobill_bank_transactions_table.php b/database/migrations/2026_02_06_120000_add_is_manual_to_barobill_bank_transactions_table.php new file mode 100644 index 0000000..31bd50d --- /dev/null +++ b/database/migrations/2026_02_06_120000_add_is_manual_to_barobill_bank_transactions_table.php @@ -0,0 +1,24 @@ +boolean('is_manual')->default(false) + ->after('account_name') + ->comment('수동 입력 여부'); + }); + } + + public function down(): void + { + Schema::table('barobill_bank_transactions', function (Blueprint $table) { + $table->dropColumn('is_manual'); + }); + } +};