Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix precedence error in SQL::Translator::Schema::Trigger
`!$x eq $y` parses as `(!$x) ne $y`, not `!($x eq $y)`. Just use `ne` to check for inequality directly. Fixes #175.
- Loading branch information