1
0
mirror of https://github.com/flarum/core.git synced 2025-08-10 18:35:56 +02:00
Files
php-flarum/migrations/2018_09_15_043337_add_notifications_indices.php
luceos 1948b7e6f4 Apply fixes from StyleCI
[ci skip] [skip ci]
2020-02-04 21:11:08 +00:00

26 lines
616 B
PHP

<?php
/*
* This file is part of Flarum.
*
* For detailed 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']);
});
}
];