1
0
mirror of https://github.com/flarum/core.git synced 2025-08-30 03:20:36 +02:00

reverts #96e2824

This commit is contained in:
Daniël Klabbers
2019-01-15 20:39:38 +01:00
parent 167059027e
commit 390148456c
15 changed files with 4 additions and 105 deletions

View File

@@ -9,7 +9,6 @@
* file that was distributed with this source code.
*/
use Flarum\Database\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Schema\Builder;
@@ -20,8 +19,6 @@ return [
$table->index('last_seen_at');
$table->index('discussion_count');
$table->index('comment_count');
Migration::fixIndexNames($schema, $table);
});
},
@@ -31,8 +28,6 @@ return [
$table->dropIndex(['last_seen_at']);
$table->dropIndex(['discussion_count']);
$table->dropIndex(['comment_count']);
Migration::fixIndexNames($schema, $table);
});
}
];