Browse Source

[1] Redone missing code.

[2] Added empty line at the end of file
[3] Removed exception.
tags/2.0.0-beta
gevik 11 years ago
parent
commit
ec9dab11fa
  1. 6
      framework/yii/db/pgsql/Schema.php

6
framework/yii/db/pgsql/Schema.php

@ -123,6 +123,8 @@ class Schema extends \yii\db\Schema
if ($this->findColumns($table)) { if ($this->findColumns($table)) {
$this->findConstraints($table); $this->findConstraints($table);
return $table; return $table;
} else {
return null;
} }
} }
@ -240,11 +242,7 @@ ORDER BY
a.attnum; a.attnum;
SQL; SQL;
try {
$columns = $this->db->createCommand($sql)->queryAll(); $columns = $this->db->createCommand($sql)->queryAll();
} catch (\Exception $e) {
return false;
}
foreach ($columns as $column) { foreach ($columns as $column) {
$column = $this->loadColumnSchema($column); $column = $this->loadColumnSchema($column);
$table->columns[$column->name] = $column; $table->columns[$column->name] = $column;

Loading…
Cancel
Save