mirror of
https://github.com/flarum/framework.git
synced 2025-04-02 15:15:24 +08:00
Fix index names in migrations
This can be reverted when we upgrade to Laravel 5.7.
This commit is contained in:
parent
97c1472786
commit
d497e65d21
@ -9,19 +9,24 @@
|
|||||||
* file that was distributed with this source code.
|
* file that was distributed with this source code.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
use Flarum\Database\Migration;
|
||||||
use Illuminate\Database\Schema\Blueprint;
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
use Illuminate\Database\Schema\Builder;
|
use Illuminate\Database\Schema\Builder;
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'up' => function (Builder $schema) {
|
'up' => function (Builder $schema) {
|
||||||
$schema->table('discussions', function (Blueprint $table) {
|
$schema->table('discussions', function (Blueprint $table) use ($schema) {
|
||||||
$table->index(['is_sticky', 'created_at']);
|
$table->index(['is_sticky', 'created_at']);
|
||||||
|
|
||||||
|
Migration::fixIndexNames($schema, $table);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
'down' => function (Builder $schema) {
|
'down' => function (Builder $schema) {
|
||||||
$schema->table('discussions', function (Blueprint $table) {
|
$schema->table('discussions', function (Blueprint $table) use ($schema) {
|
||||||
$table->dropIndex(['is_sticky', 'created_at']);
|
$table->dropIndex(['is_sticky', 'created_at']);
|
||||||
|
|
||||||
|
Migration::fixIndexNames($schema, $table);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user