From e3d5303167ee5ec0b4e3ff3df6c8b9a1f64c915c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Fri, 20 Feb 2026 10:32:55 +0900 Subject: [PATCH] =?UTF-8?q?feat:=EB=B2=95=EC=9D=B8=EC=B9=B4=EB=93=9C=20?= =?UTF-8?q?=EA=B2=B0=EC=A0=9C=20=ED=95=AD=EB=AA=A9(items)=20JSON=20?= =?UTF-8?q?=EC=BB=AC=EB=9F=BC=20=EC=B6=94=EA=B0=80=20=EB=A7=88=EC=9D=B4?= =?UTF-8?q?=EA=B7=B8=EB=A0=88=EC=9D=B4=EC=85=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- ...dd_items_to_corporate_card_prepayments.php | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 database/migrations/2026_02_20_add_items_to_corporate_card_prepayments.php diff --git a/database/migrations/2026_02_20_add_items_to_corporate_card_prepayments.php b/database/migrations/2026_02_20_add_items_to_corporate_card_prepayments.php new file mode 100644 index 0000000..5d96401 --- /dev/null +++ b/database/migrations/2026_02_20_add_items_to_corporate_card_prepayments.php @@ -0,0 +1,22 @@ +json('items')->nullable()->comment('결제 항목 [{date, amount, description}]')->after('memo'); + }); + } + + public function down(): void + { + Schema::table('corporate_card_prepayments', function (Blueprint $table) { + $table->dropColumn('items'); + }); + } +};