mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-11 13:02:15 +09:00
Import DB parser classes from previous private project
This commit is contained in:
parent
653fc532f5
commit
59f14d8a3f
6 changed files with 231 additions and 0 deletions
18
common/framework/parsers/dbtable/column.php
Normal file
18
common/framework/parsers/dbtable/column.php
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<?php
|
||||
|
||||
namespace Rhymix\Framework\Parsers\DBTable;
|
||||
|
||||
/**
|
||||
* Column class.
|
||||
*/
|
||||
class Column
|
||||
{
|
||||
public $name;
|
||||
public $type;
|
||||
public $size;
|
||||
public $utf8mb4 = true;
|
||||
public $default_value;
|
||||
public $not_null = false;
|
||||
public $is_primary_key = false;
|
||||
public $auto_increment = false;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue