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'); + }); + } +};