This adds some indexes for performance on license_seats

This commit is contained in:
Brady Wetherington 2022-07-06 18:10:48 -07:00
parent ee4f355e49
commit 61813a6f2c

View file

@ -0,0 +1,34 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddIndexesToLicenseSeats extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('license_seats', function (Blueprint $table) {
$table->index(['assigned_to','license_id']);
$table->index(['asset_id','license_id']);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('license_seats', function (Blueprint $table) {
$table->dropIndex(['assigned_to','license_id']);
$table->dropIndex(['asset_id','license_id']);
});
}
}