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