52 lines
1.0 KiB
PHP
52 lines
1.0 KiB
PHP
<?php
|
|
|
|
use PragmaRX\Tracker\Support\Migration;
|
|
|
|
class FixQueryArguments extends Migration
|
|
{
|
|
/**
|
|
* Table related to this migration.
|
|
*
|
|
* @var string
|
|
*/
|
|
private $table = 'tracker_query_arguments';
|
|
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function migrateUp()
|
|
{
|
|
try {
|
|
$this->builder->table(
|
|
$this->table,
|
|
function ($table) {
|
|
$table->string('value')->nullable()->change();
|
|
}
|
|
);
|
|
} catch (\Exception $e) {
|
|
dd($e->getMessage());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function migrateDown()
|
|
{
|
|
try {
|
|
$this->builder->table(
|
|
$this->table,
|
|
function ($table) {
|
|
$table->string('value')->change();
|
|
}
|
|
);
|
|
} catch (\Exception $e) {
|
|
dd($e->getMessage());
|
|
}
|
|
}
|
|
}
|