View file visavi-rotorcms-63832fa/app/database/migrations/20151214195723_add_fk_to_guest.php
<?php
use Phinx\Migration\AbstractMigration;
class AddFkToGuest extends AbstractMigration
{
/**
* Change Method.
*/
public function change()
{
$table = $this->table('guest');
$table->addForeignKey('user_id', 'users', 'id',
['delete'=> 'set null', 'update' => 'restrict'])
->update();
}
}