mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-08 03:22:29 +09:00
More work on the query parser
This commit is contained in:
parent
20025077f7
commit
b912c623e2
8 changed files with 183 additions and 34 deletions
|
|
@ -5,12 +5,15 @@ namespace Rhymix\Framework\Parsers\DBQuery;
|
|||
/**
|
||||
* Condition class.
|
||||
*/
|
||||
class Condition extends GenericVar
|
||||
class Condition extends VariableBase
|
||||
{
|
||||
public $operation;
|
||||
public $column;
|
||||
public $var;
|
||||
public $default;
|
||||
public $not_null;
|
||||
public $operator = 'AND';
|
||||
public $filter;
|
||||
public $minlength = 0;
|
||||
public $maxlength = 0;
|
||||
public $pipe = 'AND';
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue