mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
16 lines
241 B
PHP
16 lines
241 B
PHP
<?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';
|
|
}
|