for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use PragmaRX\Tracker\Support\Migration;
class CreateTrackerSqlQueriesLogTable extends Migration
{
/**
* Table related to this migration.
*
* @var string
*/
private $table = 'tracker_sql_queries_log';
* Run the migrations.
* @return void
public function migrateUp()
$this->builder->create(
$this->table,
function ($table) {
$table->bigIncrements('id');
$table->bigInteger('log_id')->unsigned()->index();
$table->bigInteger('sql_query_id')->unsigned()->index();
$table->timestamps();
$table->index('created_at');
$table->index('updated_at');
}
);
* Reverse the migrations.
public function migrateDown()
$this->drop($this->table);