LibreNMS/database/migrations/2021_11_29_165046_improve_d...

35 lines
792 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class ImproveDevicesSearchIndex extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('devices', function (Blueprint $table) {
$table->index(['hostname', 'sysName', 'display']);
$table->dropIndex('devices_hostname_index');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('devices', function (Blueprint $table) {
$table->index('hostname');
$table->dropIndex('devices_hostname_sysname_display_index');
});
}
}