Init
This commit is contained in:
30
database/migrations/2024_02_18_110521_optimization.php
Normal file
30
database/migrations/2024_02_18_110521_optimization.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?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('gallery', function (Blueprint $table) {
|
||||
$table->index('hentai_id');
|
||||
$table->index('episode_id');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::table('gallery', function (Blueprint $table)
|
||||
{
|
||||
$table->dropIndex(['episode_id', 'hentai_id']);
|
||||
});
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user