Skip to content

Commit 6efa18b

Browse files
author
Ilya Sakovich
authored
Merge pull request #11 from edatsuyoshi/add_deleted_at_to_ignore
Added `deleted_at` to ColumnShouldBeIgnored
2 parents 2f7ca0b + 79b805d commit 6efa18b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/ColumnShouldBeIgnored.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ public function __invoke(Column $column): bool
1212
return true;
1313
}
1414

15+
if ($column->getName() === 'deleted_at') {
16+
return true;
17+
}
18+
1519
return false;
1620
}
1721
}

0 commit comments

Comments
 (0)