123456789101112131415161718192021222324252627 |
- <?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 Version20180124175322 extends MigrationsBase
- {
- /**
- * @param Schema $schema
- */
- public function up(Schema $schema)
- {
- $files = array("action.yml", "olt_model.yml", "onu_model.yml", "template.yml");
- foreach($files as $f){
- $this->executeYaml(__DIR__ . "/Version20180124175322/", $f);
- }
- $this->showResult();
- }
- }
|