From 9176c555c9346071b5b5737cb78555532664a046 Mon Sep 17 00:00:00 2001 From: aemaddin Date: Thu, 13 Jul 2023 17:17:05 +0300 Subject: [PATCH] - [X] Fixes typo on UDF fields --- ...itional_utf_fields_to_knet_transactions_table.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/database/migrations/2023_07_13_140317_appends_additional_utf_fields_to_knet_transactions_table.php b/database/migrations/2023_07_13_140317_appends_additional_utf_fields_to_knet_transactions_table.php index bebba79..62822ca 100644 --- a/database/migrations/2023_07_13_140317_appends_additional_utf_fields_to_knet_transactions_table.php +++ b/database/migrations/2023_07_13_140317_appends_additional_utf_fields_to_knet_transactions_table.php @@ -11,12 +11,12 @@ public function up(): void { Schema::table('knet_transactions', function (Blueprint $table) { - $table->after('utf5', function () use ($table) { - $table->string('utf6')->nullable(); - $table->string('utf7')->nullable(); - $table->string('utf8')->nullable(); - $table->string('utf9')->nullable(); - $table->string('utf10')->nullable(); + $table->after('udf5', function () use ($table) { + $table->string('udf6')->nullable(); + $table->string('udf7')->nullable(); + $table->string('udf8')->nullable(); + $table->string('udf9')->nullable(); + $table->string('udf10')->nullable(); }); }); }