1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00
This commit is contained in:
zYne 2007-04-03 21:19:24 +00:00
parent 4676d8f4bb
commit b47381df1c

View file

@ -678,13 +678,15 @@ class Doctrine_Export extends Doctrine_Connection_Module
$keyword = ($v == 'onUpdate') ? ' ON UPDATE ' : ' ON DELETE '; $keyword = ($v == 'onUpdate') ? ' ON UPDATE ' : ' ON DELETE ';
if (isset($definition[$v])) { if (isset($definition[$v])) {
switch ($definition[$v]) { $upper = strtoupper($definition[$v]);
switch ($upper) {
case 'CASCADE': case 'CASCADE':
case 'SET NULL': case 'SET NULL':
case 'NO ACTION': case 'NO ACTION':
case 'RESTRICT': case 'RESTRICT':
case 'SET DEFAULT': case 'SET DEFAULT':
$sql .= $keyword . $definition[$v]; $sql .= $keyword . $upper;
break; break;
default: default:
throw new Doctrine_Export_Exception('Unknown foreign key referential action option given.'); throw new Doctrine_Export_Exception('Unknown foreign key referential action option given.');