2018-09-15 14:32:51 +09:30
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of Flarum.
|
|
|
|
*
|
2019-11-28 00:16:50 +00:00
|
|
|
* 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('posts', function (Blueprint $table) {
|
2018-09-15 14:32:51 +09:30
|
|
|
$table->index(['discussion_id', 'number']);
|
|
|
|
$table->index(['discussion_id', 'created_at']);
|
|
|
|
$table->index(['user_id', 'created_at']);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
'down' => function (Builder $schema) {
|
2019-01-15 20:49:06 +01:00
|
|
|
$schema->table('posts', function (Blueprint $table) {
|
2018-09-15 14:32:51 +09:30
|
|
|
$table->dropIndex(['discussion_id', 'number']);
|
|
|
|
$table->dropIndex(['discussion_id', 'created_at']);
|
|
|
|
$table->dropIndex(['user_id', 'created_at']);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
];
|