Skip to content

Commit

Permalink
Merge pull request #11 from edatsuyoshi/add_deleted_at_to_ignore
Browse files Browse the repository at this point in the history
Added `deleted_at` to ColumnShouldBeIgnored
  • Loading branch information
Ilya Sakovich committed Jan 24, 2020
2 parents 2f7ca0b + 79b805d commit 6efa18b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/ColumnShouldBeIgnored.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ public function __invoke(Column $column): bool
return true;
}

if ($column->getName() === 'deleted_at') {
return true;
}

return false;
}
}

0 comments on commit 6efa18b

Please sign in to comment.