Skip to content

Commit

Permalink
recipients indicies
Browse files Browse the repository at this point in the history
  • Loading branch information
imorland committed Jan 13, 2021
1 parent e8b13dc commit 0309940
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions migrations/2021_01_13_000001_byobu_indicies.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?php

/*
* This file is part of fof/byobu.
*
* Copyright (c) 2019 - 2021 FriendsOfFlarum.
*
* 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('recipients', function (Blueprint $table) {
$table->index('removed_at');
$table->index(['discussion_id', 'user_id']);
$table->index(['discussion_id', 'group_id']);
});
},
'down' => function (Builder $schema) {

$schema->table('recipients', function (Blueprint $table) {
$table->dropIndex(['removed_at']);
});
},
];

0 comments on commit 0309940

Please sign in to comment.