removed duplicate assignment of primaryKey in cubrid

This commit is contained in:
Carsten Brandt
2013-11-17 15:43:05 +01:00
parent f2e76fe3d9
commit a0824422b2

View File

@@ -180,7 +180,7 @@ class Schema extends \yii\db\Schema
$column->name = $info['Field'];
$column->allowNull = $info['Null'] === 'YES';
$column->isPrimaryKey = strpos($info['Key'], 'PRI') !== false;
$column->isPrimaryKey = false; // primary key will be set by loadTableSchema() later
$column->autoIncrement = stripos($info['Extra'], 'auto_increment') !== false;
$column->dbType = strtolower($info['Type']);