mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-12-20 22:22:06 +03:00
@@ -0,0 +1,28 @@
|
||||
<?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('views', function (Blueprint $table) {
|
||||
$table->index('viewable_type', 'views_viewable_type_index');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('views', function (Blueprint $table) {
|
||||
$table->dropIndex('views_viewable_type_index');
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user