mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-25 22:29:55 +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
16
common/framework/parsers/dbtable/Constraint.php
Normal file
16
common/framework/parsers/dbtable/Constraint.php
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
namespace Rhymix\Framework\Parsers\DBTable;
|
||||
|
||||
/**
|
||||
* Constraint class.
|
||||
*/
|
||||
class Constraint
|
||||
{
|
||||
public $type;
|
||||
public $column;
|
||||
public $references;
|
||||
public $condition;
|
||||
public $on_delete = 'RESTRICT';
|
||||
public $on_update = 'RESTRICT';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue