rhymix/common/framework/parsers/dbtable/index.php
Kijin Sung 9b776942e5 Support more index types in DB table parser
UNIQUE, SPATIAL, FULLTEXT
2020-07-11 15:42:37 +09:00

13 lines
157 B
PHP

<?php
namespace Rhymix\Framework\Parsers\DBTable;
/**
* Index class.
*/
class Index
{
public $name;
public $columns = array();
public $type = null;
}