Browse Source

Removed unnecessary code from MSSQL schema.

tags/2.0.0-beta
resurtm 11 years ago
parent
commit
cc5426e549
  1. 8
      framework/yii/db/mssql/Schema.php

8
framework/yii/db/mssql/Schema.php

@ -241,16 +241,12 @@ SQL;
}
foreach ($columns as $column) {
$column = $this->loadColumnSchema($column);
if (is_array($table->primaryKey)) {
foreach ($table->primaryKey as $primaryKeyColumn) {
if (strcasecmp($column->name, $primaryKeyColumn) === 0) {
foreach ($table->primaryKey as $primaryKey) {
if (strcasecmp($column->name, $primaryKey) === 0) {
$column->isPrimaryKey = true;
break;
}
}
} else {
$column->isPrimaryKey = strcasecmp($column->name, $table->primaryKey) === 0;
}
if ($column->isPrimaryKey && $column->autoIncrement) {
$table->sequenceName = '';
}

Loading…
Cancel
Save