Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
imorland authored and StyleCIBot committed Jan 13, 2021
1 parent 0309940 commit 83de140
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions migrations/2021_01_13_000001_byobu_indicies.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,13 @@

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']);
});
Expand Down

0 comments on commit 83de140

Please sign in to comment.