Error checking for naming collisions
This commit is contained in:
parent
d3b6acfff0
commit
9828081533
1 changed files with 8 additions and 1 deletions
|
@ -751,7 +751,14 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
|
||||||
if (isset($this->relations[$name])) {
|
if (isset($this->relations[$name])) {
|
||||||
unset($this->relations[$name]);
|
unset($this->relations[$name]);
|
||||||
}
|
}
|
||||||
$e = explode(" as ",$name);
|
|
||||||
|
$lower = strtolower($name);
|
||||||
|
|
||||||
|
if (isset($this->columns[$lower])) {
|
||||||
|
throw new Doctrine_Table_Exception('Column name with ' . $lower . ' already exists!');
|
||||||
|
}
|
||||||
|
|
||||||
|
$e = explode(' as ', $name);
|
||||||
$name = $e[0];
|
$name = $e[0];
|
||||||
|
|
||||||
if (isset($e[1])) {
|
if (isset($e[1])) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue