Просмотр файла upgrade/migrations/20161212005632_rename_indexes_in_notebook.php
<?php
use Phinx\Migration\AbstractMigration;
class RenameIndexesInNotebook extends AbstractMigration
{
/**
* Migrate Up.
*/
public function up()
{
$table = $this->table('notebook');
$table->removeIndexByName('note_user');
$table->addIndex('user', ['unique' => true])
->save();
}
/**
* Migrate Down.
*/
public function down()
{
$table = $this->table('notebook');
$table->removeIndexByName('user');
$table->addIndex('user', ['unique' => true, 'name' => 'note_user'])
->save();
}
}