Skip to content

Commit

Permalink
#52 fix Cant load long comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mnvx committed Aug 8, 2019
1 parent dfc81b1 commit 6dacf84
Showing 1 changed file with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

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

class RemoveIndexFromTextFields extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
DB::statement('DROP INDEX IF EXISTS note_lower_idx;');
}

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

0 comments on commit 6dacf84

Please sign in to comment.