Added back the generation of "equal: true" from schema files.
This commit is contained in:
parent
a6d05624f5
commit
1ddd4f5db4
1 changed files with 4 additions and 0 deletions
|
@ -457,6 +457,10 @@ END;
|
||||||
$a[] = '\'onUpdate\' => ' . var_export($relation['onUpdate'], true);
|
$a[] = '\'onUpdate\' => ' . var_export($relation['onUpdate'], true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isset($relation['equal']) && $relation['equal']) {
|
||||||
|
$a[] = '\'equal\' => ' . var_export($relation['equal'], true);
|
||||||
|
}
|
||||||
|
|
||||||
if ( ! empty($a)) {
|
if ( ! empty($a)) {
|
||||||
$ret[$i] .= ', ' . 'array(';
|
$ret[$i] .= ', ' . 'array(';
|
||||||
$length = strlen($ret[$i]);
|
$length = strlen($ret[$i]);
|
||||||
|
|
Loading…
Add table
Reference in a new issue