forked from antonioribeiro/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
92b7b3b
commit 1e8b704
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) { | ||
} | ||
} | ||
} |