DoctrineMigrations\Version20160216215635::up PHP Method

up() public method

public up ( Doctrine\DBAL\Schema\Schema $schema )
$schema Doctrine\DBAL\Schema\Schema
    public function up(Schema $schema)
    {
        $app = \Eccube\Application::getInstance();
        $PageLayout = $app['eccube.repository.page_layout']->findOneBy(array('url' => 'forgot_reset', 'name' => 'パスワード変更((完了ページ)'));
        if ($PageLayout) {
            $PageLayout->setName('パスワード変更(完了ページ)');
            $app['orm.em']->flush();
        }
    }
Version20160216215635