fix database for add driver mission

This commit is contained in:
2026-06-10 11:15:54 +03:30
parent ccacb2f916
commit 235111ee57

View File

@@ -12,7 +12,7 @@ return new class extends Migration
public function up(): void
{
Schema::table('missions', function (Blueprint $table) {
$table->integer('driver_id')->unsigned()->nullable()->index();
$table->integer('driver_id')->nullable();
$table->string('driver_name')->nullable();
});
}