Hello guys,
How we can add a primary key on an existing table ?
I try to do this but the table dont be updated :
public function up()
{
$this->table('toto', array('id' => true))
->save();
}
But Table::update() method was call and this method didn't create primary key ...
Hello guys,
How we can add a primary key on an existing table ?
I try to do this but the table dont be updated :
But Table::update() method was call and this method didn't create primary key ...