|
@@ -0,0 +1,31 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+namespace Application\Migrations;
|
|
|
+
|
|
|
+use Doctrine\DBAL\Migrations\AbstractMigration;
|
|
|
+use Doctrine\DBAL\Schema\Schema;
|
|
|
+use MigrationsBundle\Migrations\MigrationsBase;
|
|
|
+
|
|
|
+class Version20171219120324 extends MigrationsBase
|
|
|
+{
|
|
|
+ /**
|
|
|
+ * @param Schema $schema
|
|
|
+ */
|
|
|
+ public function up(Schema $schema)
|
|
|
+ {
|
|
|
+ // this up() migration is auto-generated, please modify it to your needs
|
|
|
+ $this->executeYaml(__DIR__ . "/Templates20171219120324/", "actions.yml");
|
|
|
+ $this->showResult();
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param Schema $schema
|
|
|
+ */
|
|
|
+ public function down(Schema $schema)
|
|
|
+ {
|
|
|
+ // this down() migration is auto-generated, please modify it to your needs
|
|
|
+
|
|
|
+ }
|
|
|
+}
|