mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
19 lines
302 B
PHP
19 lines
302 B
PHP
<?php
|
|
|
|
namespace Rhymix\Framework\Parsers\DBQuery;
|
|
|
|
/**
|
|
* ColumnWrite class.
|
|
*/
|
|
class ColumnWrite extends VariableBase
|
|
{
|
|
public $name;
|
|
public $operation = 'equal';
|
|
public $var;
|
|
public $ifvar;
|
|
public $default;
|
|
public $not_null;
|
|
public $filter;
|
|
public $minlength = 0;
|
|
public $maxlength = 0;
|
|
}
|