Adds methods to `orWhere` to match `where`
This patch was authored by @NeedleInAJayStack and released by @0xTim.
Adds additional missing methods to orWhere
that mirror where
. Specifically, it adds orWhere
methods for when the right-hand-side is:
- an encodable
- a list of encodables
- a column identifier
This allows for example
builder.orWhere("name", .equal, "Earth")