I use migrations in Yii to create a new column. My code works fine however, I'm not sure how to set the primary key?
This is part of my migration file:
public function up()
{
$this->addColumn(
'competition_prizes',
'prize_id',
'INT(11) UNSIGNED NOT NULL FIRST',
);
$this->addPrimaryKey('PK1', 'competition_prizes', 'prize_id');
}
I do not know how to make a competition_prizesprimary key column.
source
share