1
0
mirror of https://github.com/flarum/core.git synced 2025-08-12 19:34:18 +02:00

Add database indices. closes #127

This commit is contained in:
Toby Zerner
2018-09-15 14:32:51 +09:30
parent 5635bd26f9
commit 54aa9ee3cf
4 changed files with 130 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?php
/*
* This file is part of Flarum.
*
* (c) Toby Zerner <toby.zerner@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Schema\Builder;
return [
'up' => function (Builder $schema) {
$schema->table('notifications', function (Blueprint $table) {
$table->index('user_id');
});
},
'down' => function (Builder $schema) {
$schema->table('notifications', function (Blueprint $table) {
$table->dropIndex(['user_id']);
});
}
];