2015-01-23 13:09:30 +00:00
|
|
|
/**
|
|
|
|
* The equivalent of a SQL operation.
|
|
|
|
**/
|
|
|
|
Sql.FilterItem = new Class
|
|
|
|
({
|
|
|
|
Extends: Sql.Operation
|
|
|
|
,Tag: 'sql-filter-item'
|
2015-11-17 10:34:33 +00:00
|
|
|
,Properties:
|
2015-01-23 13:09:30 +00:00
|
|
|
{
|
2015-11-19 13:57:23 +00:00
|
|
|
primary:
|
|
|
|
{
|
|
|
|
type: Boolean
|
2015-11-17 10:34:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-19 13:57:23 +00:00
|
|
|
,primary: true
|
2015-01-23 13:09:30 +00:00
|
|
|
});
|