mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-04 02:52:10 +09:00
13 lines
163 B
PHP
13 lines
163 B
PHP
<?php
|
|
|
|
namespace Rhymix\Framework\Parsers\DBTable;
|
|
|
|
/**
|
|
* Index class.
|
|
*/
|
|
class Index
|
|
{
|
|
public $name;
|
|
public $columns = array();
|
|
public $is_unique = false;
|
|
}
|