mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-12 07:11:42 +09:00
Create basic structure of XML query
This commit is contained in:
parent
c97b161e42
commit
20025077f7
11 changed files with 303 additions and 8 deletions
14
common/framework/parsers/dbquery/table.php
Normal file
14
common/framework/parsers/dbquery/table.php
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
namespace Rhymix\Framework\Parsers\DBQuery;
|
||||
|
||||
/**
|
||||
* Table class.
|
||||
*/
|
||||
class Table
|
||||
{
|
||||
public $name;
|
||||
public $alias;
|
||||
public $join_type;
|
||||
public $join_conditions = array();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue