From ba34fb09df5fb942e988b7f8e4e6f3686baa7b28 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:02:46 +0900 Subject: [PATCH] =?UTF-8?q?feat:=EC=B9=B4=EB=93=9C=20=EC=82=AC=EC=9A=A9?= =?UTF-8?q?=EB=82=B4=EC=97=AD=20=EA=B8=88=EC=95=A1=20=EC=88=98=EC=A0=95=20?= =?UTF-8?q?=EB=A7=88=EC=9D=B4=EA=B7=B8=EB=A0=88=EC=9D=B4=EC=85=98=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 - modified_supply_amount, modified_tax 컬럼 추가 (사용자 수정 공급가액/부가세) - barobill_card_transaction_amount_logs 이력 테이블 생성 Co-Authored-By: Claude Opus 4.5 --- ...ds_to_barobill_card_transactions_table.php | 31 ++++++++++++++ ...ill_card_transaction_amount_logs_table.php | 40 +++++++++++++++++++ 2 files changed, 71 insertions(+) create mode 100644 database/migrations/2026_02_05_200000_add_modified_amount_fields_to_barobill_card_transactions_table.php create mode 100644 database/migrations/2026_02_05_200100_create_barobill_card_transaction_amount_logs_table.php diff --git a/database/migrations/2026_02_05_200000_add_modified_amount_fields_to_barobill_card_transactions_table.php b/database/migrations/2026_02_05_200000_add_modified_amount_fields_to_barobill_card_transactions_table.php new file mode 100644 index 0000000..5fc0793 --- /dev/null +++ b/database/migrations/2026_02_05_200000_add_modified_amount_fields_to_barobill_card_transactions_table.php @@ -0,0 +1,31 @@ +decimal('modified_supply_amount', 18, 2)->nullable()->after('tax') + ->comment('사용자 수정 공급가액 (null이면 원본값 사용)'); + $table->decimal('modified_tax', 18, 2)->nullable()->after('modified_supply_amount') + ->comment('사용자 수정 부가세 (null이면 원본값 사용)'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('barobill_card_transactions', function (Blueprint $table) { + $table->dropColumn(['modified_supply_amount', 'modified_tax']); + }); + } +}; 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 new file mode 100644 index 0000000..f5b05b7 --- /dev/null +++ b/database/migrations/2026_02_05_200100_create_barobill_card_transaction_amount_logs_table.php @@ -0,0 +1,40 @@ +id(); + $table->foreignId('card_transaction_id')->constrained('barobill_card_transactions')->onDelete('cascade') + ->comment('카드 거래 ID'); + $table->string('original_unique_key', 255)->comment('거래 고유키 (cardNum|useDt|approvalNum|amount)'); + $table->decimal('before_supply_amount', 18, 2)->comment('변경 전 공급가액'); + $table->decimal('before_tax', 18, 2)->comment('변경 전 부가세'); + $table->decimal('after_supply_amount', 18, 2)->comment('변경 후 공급가액'); + $table->decimal('after_tax', 18, 2)->comment('변경 후 부가세'); + $table->unsignedBigInteger('modified_by')->nullable()->comment('수정자 ID'); + $table->string('modified_by_name', 100)->nullable()->comment('수정자 이름'); + $table->string('ip_address', 45)->nullable()->comment('수정자 IP'); + $table->timestamp('created_at')->useCurrent()->comment('수정 시각'); + + $table->index('card_transaction_id', 'bb_amount_log_trans_idx'); + $table->index('original_unique_key', 'bb_amount_log_key_idx'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('barobill_card_transaction_amount_logs'); + } +};