public function actionUpdate() { $isSubmitted = false; $sql = false; $foreignKey = ForeignKey::model()->findBySql('SELECT * FROM KEY_COLUMN_USAGE ' . 'WHERE TABLE_SCHEMA = :tableSchema ' . 'AND TABLE_NAME = :tableName ' . 'AND COLUMN_NAME = :columnName ' . 'AND REFERENCED_TABLE_SCHEMA IS NOT NULL', array('tableSchema' => $this->schema, 'tableName' => $this->table, 'columnName' => $this->column)); if (!$foreignKey) { $foreignKey = new ForeignKey(); $foreignKey->TABLE_SCHEMA = $this->schema; $foreignKey->TABLE_NAME = $this->table; $foreignKey->COLUMN_NAME = $this->column; } if (isset($_POST['ForeignKey'])) { $foreignKey->attributes = $_POST['ForeignKey']; if ($foreignKey->getReferences() && ($sql = $foreignKey->save())) { $isSubmitted = true; } elseif (!$foreignKey->getReferences() && ($sql = $foreignKey->delete())) { $isSubmitted = true; } } CHtml::generateRandomIdPrefix(); // Column data $columns = array('' => ''); $tables = Table::model()->findAllByAttributes(array('TABLE_SCHEMA' => $this->schema)); foreach ($tables as $table) { if (StorageEngine::check($table->ENGINE, StorageEngine::SUPPORTS_FOREIGN_KEYS)) { $columns[$table->TABLE_NAME] = array(); foreach ($table->columns as $column) { $columns[$table->TABLE_NAME][$this->schema . '.' . $table->TABLE_NAME . '.' . $column->COLUMN_NAME] = $column->COLUMN_NAME; } } } // "On-Actions" $onActions = array('' => '', 'CASCADE' => 'CASCADE', 'SET NULL' => 'SET NULL', 'NO ACTION' => 'NO ACTION', 'RESTRICT' => 'RESTRICT'); $this->render('form', array('foreignKey' => $foreignKey, 'columns' => $columns, 'onActions' => $onActions, 'sql' => $sql, 'isSubmitted' => $isSubmitted)); }