1
0
mirror of https://github.com/flarum/core.git synced 2025-08-21 23:56:33 +02:00

Fix index names in migrations

This can be reverted when we upgrade to Laravel 5.7.
This commit is contained in:
Toby Zerner
2018-11-27 12:19:13 +10:30
parent 24ff8899a0
commit 96e282458b
15 changed files with 135 additions and 32 deletions

View File

@@ -9,23 +9,28 @@
* file that was distributed with this source code.
*/
use Flarum\Database\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Schema\Builder;
return [
'up' => function (Builder $schema) {
$schema->table('posts', function (Blueprint $table) {
$schema->table('posts', function (Blueprint $table) use ($schema) {
$table->index(['discussion_id', 'number']);
$table->index(['discussion_id', 'created_at']);
$table->index(['user_id', 'created_at']);
Migration::fixIndexNames($schema, $table);
});
},
'down' => function (Builder $schema) {
$schema->table('posts', function (Blueprint $table) {
$schema->table('posts', function (Blueprint $table) use ($schema) {
$table->dropIndex(['discussion_id', 'number']);
$table->dropIndex(['discussion_id', 'created_at']);
$table->dropIndex(['user_id', 'created_at']);
Migration::fixIndexNames($schema, $table);
});
}
];