Skip to content

Commit

Permalink
fix: data truncated for column 'initiator'
Browse files Browse the repository at this point in the history
  • Loading branch information
andreiio committed Oct 24, 2024
1 parent fa527ad commit b4613d3
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

declare(strict_types=1);

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('interventionable_cases', function (Blueprint $table) {
$table->string('initiator')->nullable()->change();
});
}
};

0 comments on commit b4613d3

Please sign in to comment.