orWhere method
Implementation
Query orWhere(column, operator, value) {
if (!_lastQuery.contains('WHERE')) {
_lastQuery += ' WHERE ';
} else {
_lastQuery += ' OR ';
}
_lastQuery += (column) + ' ' + (operator ?? '=') + ' ' + (checkIntType(value));
return this;
}