for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Install GitHub App
<?php
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::create('uploaders', function (Blueprint $table) {
$table->increments('id');
$table->string('upload')->nullable();
$table->text('upload_multiple')->nullable();
});
}
* Reverse the migrations.
public function down(): void
Schema::dropIfExists('uploaders');
};