Skip to content

Commit

Permalink
- Alterado tipo da coluna entities.description de varchar para text.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeferson Almeida committed May 14, 2020
1 parent 988746f commit 1e914ca
Showing 1 changed file with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class ChangeDescriptionColumnTypeOnEntitiesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
DB::statement('ALTER TABLE entities ALTER COLUMN description TYPE TEXT');
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}

0 comments on commit 1e914ca

Please sign in to comment.