mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-20 19:02:14 +09:00
15 lines
227 B
PHP
15 lines
227 B
PHP
<?php
|
|
|
|
namespace Rhymix\Framework\Parsers\DBTable;
|
|
|
|
/**
|
|
* Table class.
|
|
*/
|
|
class Table
|
|
{
|
|
public $name;
|
|
public $columns = array();
|
|
public $indexes = array();
|
|
public $primary_key = array();
|
|
public $constraints = array();
|
|
}
|