Merge pull request #11471 from uberbrady/add_license_seat_indexes

This adds some indexes for performance on license_seats
This commit is contained in:
snipe 2022-07-06 18:19:40 -07:00 committed by GitHub
commit f853188bc7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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']);
});
}
}