Merge remote-tracking branch 'origin/develop'
This commit is contained in:
commit
d489527e6d
1 changed files with 39 additions and 0 deletions
|
@ -0,0 +1,39 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table('locations', function (Blueprint $table) {
|
||||
$table->dropIndex(['manager_id']);
|
||||
$table->index(['manager_id','deleted_at']);
|
||||
});
|
||||
Schema::table('users', function (Blueprint $table) {
|
||||
$table->dropIndex(['manager_id']);
|
||||
$table->index(['manager_id','deleted_at']);
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('locations', function (Blueprint $table) {
|
||||
$table->dropIndex(['manager_id','deleted_at']);
|
||||
$table->index(['manager_id']);
|
||||
});
|
||||
Schema::table('users', function (Blueprint $table) {
|
||||
$table->dropIndex(['manager_id','deleted_at']);
|
||||
$table->index(['manager_id']);
|
||||
});
|
||||
}
|
||||
};
|
Loading…
Add table
Reference in a new issue