Version20171219120324.php 693 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace Application\Migrations;
  3. use Doctrine\DBAL\Migrations\AbstractMigration;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use MigrationsBundle\Migrations\MigrationsBase;
  6. class Version20171219120324 extends MigrationsBase
  7. {
  8. /**
  9. * @param Schema $schema
  10. */
  11. public function up(Schema $schema)
  12. {
  13. // this up() migration is auto-generated, please modify it to your needs
  14. $this->executeYaml(__DIR__ . "/Templates20171219120324/", "actions.yml");
  15. $this->showResult();
  16. }
  17. /**
  18. * @param Schema $schema
  19. */
  20. public function down(Schema $schema)
  21. {
  22. // this down() migration is auto-generated, please modify it to your needs
  23. }
  24. }