Version20180606123455.php 481 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace Application\Migrations;
  3. use Doctrine\DBAL\Schema\Schema;
  4. use MigrationsBundle\Migrations\MigrationsBase;
  5. /**
  6. * Migración cablemodem_workflow
  7. */
  8. class Version20180606123455 extends MigrationsBase
  9. {
  10. /**
  11. * @param Schema $schema
  12. */
  13. public function up(Schema $schema)
  14. {
  15. $this->executeYaml(__DIR__, 'Version20180124153518.yml');
  16. }
  17. /**
  18. * @param Schema $schema
  19. */
  20. public function down(Schema $schema)
  21. {
  22. }
  23. }