1
0
mirror of synced 2024-12-13 14:56:01 +03:00

Added back the generation of "equal: true" from schema files.

This commit is contained in:
phuson 2007-10-18 19:36:18 +00:00
parent a6d05624f5
commit 1ddd4f5db4

View File

@ -457,6 +457,10 @@ END;
$a[] = '\'onUpdate\' => ' . var_export($relation['onUpdate'], true);
}
if (isset($relation['equal']) && $relation['equal']) {
$a[] = '\'equal\' => ' . var_export($relation['equal'], true);
}
if ( ! empty($a)) {
$ret[$i] .= ', ' . 'array(';
$length = strlen($ret[$i]);