Skip to content

Commit

Permalink
- [X] Fixes typo on UDF fields
Browse files Browse the repository at this point in the history
  • Loading branch information
aemaddin committed Jul 13, 2023
1 parent 7115183 commit 9176c55
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
});
});
}
Expand Down

0 comments on commit 9176c55

Please sign in to comment.