|
@@ -0,0 +1,24 @@
|
|
|
|
+<?php
|
|
|
|
+
|
|
|
|
+namespace Application\Migrations;
|
|
|
|
+
|
|
|
|
+use Doctrine\DBAL\Schema\Schema;
|
|
|
|
+use MigrationsBundle\Migrations\MigrationsBase;
|
|
|
|
+
|
|
|
|
+class Version20170720182513 extends MigrationsBase
|
|
|
|
+{
|
|
|
|
+ /**
|
|
|
|
+ * @param Schema $schema
|
|
|
|
+ */
|
|
|
|
+ public function up(Schema $schema)
|
|
|
|
+ {
|
|
|
|
+ $this->executeYaml(__DIR__, 'fd3_ftth.yml');
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * @param Schema $schema
|
|
|
|
+ */
|
|
|
|
+ public function down(Schema $schema)
|
|
|
|
+ {
|
|
|
|
+ }
|
|
|
|
+}
|