39 lines
759 B
PHP
39 lines
759 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration {
|
|
|
|
protected $connection = 'lucentdb';
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
|
|
|
|
Schema::table('records', function (Blueprint $table) {
|
|
$table->text('search')->default("");
|
|
$table->index('search');
|
|
});
|
|
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::table('records', function (Blueprint $table) {
|
|
$table->dropColumn('search');
|
|
$table->dropIndex('search');
|
|
});
|
|
}
|
|
};
|