Skip to content

Commit

Permalink
Fix agent too long problem
Browse files Browse the repository at this point in the history
  • Loading branch information
antonioribeiro committed Jan 31, 2017
1 parent 92b7b3b commit 1e8b704
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions src/migrations/2017_01_31_311101_fix_agent_name.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<?php

use PragmaRX\Tracker\Support\Migration;

class FixAgentName extends Migration
{
/**
* Table related to this migration.
*
* @var string
*/
private $table = 'tracker_agents';

/**
* Run the migrations.
*
* @return void
*/
public function migrateUp()
{
try {
$this->builder->table(
$this->table,
function ($table) {
$table->dropUnique('tracker_agents_name_unique');
}
);

$this->builder->table(
$this->table,
function ($table) {
$table->mediumText('name')->unique()->change();
}
);
} catch (\Exception $e) {
dd($e);
}
}

/**
* Reverse the migrations.
*
* @return void
*/
public function migrateDown()
{
try {
$this->builder->table(
$this->table,
function ($table) {
$table->string('name', 255)->change();
$table->unique('name');
}
);
} catch (\Exception $e) {
}
}
}

0 comments on commit 1e8b704

Please sign in to comment.