Version20180124175322.php 561 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace Application\Migrations;
  3. use Doctrine\DBAL\Migrations\AbstractMigration;
  4. use Doctrine\DBAL\Schema\Schema;
  5. /**
  6. * Auto-generated Migration: Please modify to your needs!
  7. */
  8. class Version20180124175322 extends AbstractMigration
  9. {
  10. /**
  11. * @param Schema $schema
  12. */
  13. public function up(Schema $schema)
  14. {
  15. $files = array("action.yml", "olt_model.yml", "onu_model.yml", "template.yml");
  16. foreach($files as $f){
  17. $this->executeYaml(__DIR__ . "/Version20180124175322/", $f);
  18. }
  19. $this->showResult();
  20. }
  21. }