mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 10:41:40 +09:00
15 lines
195 B
PHP
15 lines
195 B
PHP
<?php
|
|
|
|
namespace Rhymix\Framework\Parsers\DBTable;
|
|
|
|
/**
|
|
* Constraint class.
|
|
*/
|
|
class Constraint
|
|
{
|
|
public $type;
|
|
public $column;
|
|
public $references;
|
|
public $on_update;
|
|
public $on_delete;
|
|
}
|