|
@@ -15,9 +15,11 @@ class Version20180124175322 extends AbstractMigration
|
|
|
*/
|
|
|
public function up(Schema $schema)
|
|
|
{
|
|
|
- $this->executeYaml(__DIR__ . "/Version20180124175322/", ".action.yml");
|
|
|
- $this->executeYaml(__DIR__ . "/Version20180124175322/", ".olt_model.yml");
|
|
|
- $this->executeYaml(__DIR__ . "/Version20180124175322/", ".template.yml");
|
|
|
+ $files = array("action.yml", "olt_model.yml", "onu_model.yml", "template.yml");
|
|
|
+ foreach($files as $f){
|
|
|
+ $this->executeYaml(__DIR__ . "/Version20180124175322/", $f);
|
|
|
+ }
|
|
|
+
|
|
|
$this->showResult();
|
|
|
|
|
|
}
|