develop #28

Merged
amirghasempoor merged 51 commits from develop into main 2026-06-15 11:32:19 +00:00
Showing only changes of commit 235111ee57 - Show all commits

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();
});
}