mirror of https://github.com/pixelfed/pixelfed.git
commit
352d7b59b8
|
@ -14,11 +14,6 @@ class AddReblogOfIdIndexToStatusesTable extends Migration
|
|||
public function up()
|
||||
{
|
||||
Schema::table('statuses', function (Blueprint $table) {
|
||||
$sc = Schema::getConnection()->getDoctrineSchemaManager();
|
||||
if(array_key_exists('statuses_in_reply_or_reblog_index', $sc)) {
|
||||
$table->dropIndex('statuses_in_reply_or_reblog_index');
|
||||
}
|
||||
|
||||
$table->index('in_reply_to_id');
|
||||
$table->index('reblog_of_id');
|
||||
});
|
||||
|
@ -32,7 +27,8 @@ class AddReblogOfIdIndexToStatusesTable extends Migration
|
|||
public function down()
|
||||
{
|
||||
Schema::table('statuses', function (Blueprint $table) {
|
||||
//
|
||||
$table->dropIndex('statuses_in_reply_to_id_index');
|
||||
$table->dropIndex('statuses_reblog_of_id_index');
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,35 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class RemoveOldCompoundIndexFromStatusesTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::table('statuses', function (Blueprint $table) {
|
||||
$sc = Schema::getConnection()->getDoctrineSchemaManager();
|
||||
if(array_key_exists('statuses_in_reply_to_id_reblog_of_id_index', $sc->listTableIndexes('statuses'))) {
|
||||
$table->dropIndex('statuses_in_reply_to_id_reblog_of_id_index');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::table('statuses', function (Blueprint $table) {
|
||||
//
|
||||
});
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue