Import DB parser classes from previous private project

This commit is contained in:
Kijin Sung 2020-06-22 11:00:18 +09:00
parent 653fc532f5
commit 59f14d8a3f
6 changed files with 231 additions and 0 deletions

View file

@ -0,0 +1,13 @@
<?php
namespace Rhymix\Framework\Parsers\DBTable;
/**
* Index class.
*/
class Index
{
public $name;
public $columns = array();
public $is_unique = false;
}