Files
hstream/database/migrations/2024_02_18_110521_optimization.php
2025-09-18 15:31:27 +02:00

31 lines
647 B
PHP

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