12345678910111213141516171819 |
- <?php
- namespace Application\Migrations;
- use Doctrine\DBAL\Migrations\AbstractMigration;
- use Doctrine\DBAL\Schema\Schema;
- use MigrationsBundle\Migrations\MigrationsBase;
- /**
- * Auto-generated Migration: Please modify to your needs!
- */
- class Version20171205183401 extends MigrationsBase
- {
- public function postUp(Schema $schema)
- {
- $this->executeYaml(__DIR__ . "/Templates20171205183401/", "inicio.yml");
- $this->showResult();
- }
- }
|