mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
Rename all common/framework source files to be case-sensitive
This commit is contained in:
parent
60fd7d7cf2
commit
0029d1a1ec
73 changed files with 5 additions and 5 deletions
21
common/framework/parsers/dbtable/Column.php
Normal file
21
common/framework/parsers/dbtable/Column.php
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
namespace Rhymix\Framework\Parsers\DBTable;
|
||||
|
||||
/**
|
||||
* Column class.
|
||||
*/
|
||||
class Column
|
||||
{
|
||||
public $name;
|
||||
public $type;
|
||||
public $xetype;
|
||||
public $size;
|
||||
public $charset = 'utf8mb4';
|
||||
public $default_value;
|
||||
public $not_null = false;
|
||||
public $is_indexed = false;
|
||||
public $is_unique = false;
|
||||
public $is_primary_key = false;
|
||||
public $auto_increment = false;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue