for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateStatisticsRoutesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up(): void
Schema::create(config('rinvex.statistics.tables.routes'), function (Blueprint $table) {
// Columns
$table->increments('id');
$table->string('name');
$table->string('path');
$table->string('action');
$table->string('middleware')->nullable();
$table->json('parameters')->nullable();
$table->integer('count')->unsigned()->default(0);
// Indexes
$table->unique('name');
});
}
* Reverse the migrations.
public function down(): void
Schema::dropIfExists(config('rinvex.statistics.tables.routes'));