1
0
mirror of https://github.com/flarum/core.git synced 2025-01-17 22:29:15 +01:00
php-flarum/migrations/2018_09_15_041340_add_users_indicies.php

32 lines
890 B
PHP
Raw Normal View History

2018-09-15 14:32:51 +09:30
<?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.
2018-09-15 14:32:51 +09:30
*/
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Schema\Builder;
return [
'up' => function (Builder $schema) {
2019-01-15 20:49:06 +01:00
$schema->table('users', function (Blueprint $table) {
2018-09-15 14:32:51 +09:30
$table->index('joined_at');
$table->index('last_seen_at');
$table->index('discussion_count');
$table->index('comment_count');
});
},
'down' => function (Builder $schema) {
2019-01-15 20:49:06 +01:00
$schema->table('users', function (Blueprint $table) {
2018-09-15 14:32:51 +09:30
$table->dropIndex(['joined_at']);
$table->dropIndex(['last_seen_at']);
$table->dropIndex(['discussion_count']);
$table->dropIndex(['comment_count']);
});
}
];