diff --git a/app/Models/TempFundsTransfer.php b/app/Models/TempFundsTransfer.php index 258402e..f3991e2 100644 --- a/app/Models/TempFundsTransfer.php +++ b/app/Models/TempFundsTransfer.php @@ -1,23 +1,547 @@ text('at_unique_id')->nullable(); + $table->text('bif_ref_no')->nullable(); + $table->text('atm_order_id')->nullable(); + $table->text('api_iss_acct')->nullable(); + $table->text('api_benff_acct')->nullable(); + $table->text('remarks')->nullable(); + $table->text('api_mrchn_id')->nullable(); + $table->text('bif_rcv_acct')->nullable(); + $table->text('bif_snd_acct')->nullable(); + $table->text('bif_rcv_name')->nullable(); + $table->text('bif_va_no')->nullable(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('temp_funds_transfer', function (Blueprint $table) { + $table->dropColumn([ + 'at_unique_id', + 'bif_ref_no', + 'atm_order_id', + 'api_iss_acct', + 'api_benff_acct', + 'remarks', + 'api_mrchn_id', + 'bif_rcv_acct', + 'bif_snd_acct', + 'bif_rcv_name', + 'bif_va_no' + ]); + }); + } + };