support for unique columns in multikey tables
This commit is contained in:
parent
38437492d2
commit
a41cd2bb01
1 changed files with 6 additions and 1 deletions
|
@ -42,7 +42,12 @@ class Doctrine_Validator_Unique
|
||||||
public function validate(Doctrine_Record $record, $key, $value, $args)
|
public function validate(Doctrine_Record $record, $key, $value, $args)
|
||||||
{
|
{
|
||||||
$table = $record->getTable();
|
$table = $record->getTable();
|
||||||
$sql = 'SELECT ' . $table->getIdentifier() . ' FROM ' . $table->getTableName() . ' WHERE ' . $key . ' = ?';
|
$pks = $table->getIdentifier();
|
||||||
|
if ( is_array($pks) ) {
|
||||||
|
$pks = join(',',$pks);
|
||||||
|
}
|
||||||
|
|
||||||
|
$sql = 'SELECT ' . $pks . ' FROM ' . $table->getTableName() . ' WHERE ' . $key . ' = ?';
|
||||||
|
|
||||||
$values = array();
|
$values = array();
|
||||||
$values[] = $value;
|
$values[] = $value;
|
||||||
|
|
Loading…
Add table
Reference in a new issue