mirror of
https://github.com/flarum/core.git
synced 2025-07-26 19:20:21 +02:00
Add database indices. ref flarum/core#127 (#17)
This commit is contained in:
committed by
Franz Liedke
parent
c66897fd92
commit
591f8529fd
@@ -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('discussions', function (Blueprint $table) {
|
||||||
|
$table->index('is_locked');
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
'down' => function (Builder $schema) {
|
||||||
|
$schema->table('discussions', function (Blueprint $table) {
|
||||||
|
$table->dropIndex(['is_locked']);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
];
|
Reference in New Issue
Block a user