Skip to content
Snippets Groups Projects
Commit 103c4325 authored by Travis Miller's avatar Travis Miller
Browse files

Fixed #9682: Add indexes for company_id

parent 6c1dd81e
No related branches found
No related tags found
No related merge requests found
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddCompanyIdIndexes extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('accessories', function (Blueprint $table) {
$table->index(['company_id']);
});
Schema::table('action_logs', function (Blueprint $table) {
$table->index(['company_id']);
});
Schema::table('assets', function (Blueprint $table) {
$table->index(['company_id']);
});
Schema::table('components', function (Blueprint $table) {
$table->index(['company_id']);
});
Schema::table('consumables', function (Blueprint $table) {
$table->index(['company_id']);
});
Schema::table('departments', function (Blueprint $table) {
$table->index(['company_id']);
});
Schema::table('licenses', function (Blueprint $table) {
$table->index(['company_id']);
});
Schema::table('users', function (Blueprint $table) {
$table->index(['company_id']);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('users', function (Blueprint $table) {
$table->dropIndex(['company_id']);
});
Schema::table('licenses', function (Blueprint $table) {
$table->dropIndex(['company_id']);
});
Schema::table('departments', function (Blueprint $table) {
$table->dropIndex(['company_id']);
});
Schema::table('consumables', function (Blueprint $table) {
$table->dropIndex(['company_id']);
});
Schema::table('components', function (Blueprint $table) {
$table->dropIndex(['company_id']);
});
Schema::table('assets', function (Blueprint $table) {
$table->dropIndex(['company_id']);
});
Schema::table('action_logs', function (Blueprint $table) {
$table->dropIndex(['company_id']);
});
Schema::table('accessories', function (Blueprint $table) {
$table->dropIndex(['company_id']);
});
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment