Explorar el Código

Migración faltante para actualiza action. FD3-552

Maxi Schvindt hace 7 años
padre
commit
3aa926b7e9
Se han modificado 1 ficheros con 27 adiciones y 0 borrados
  1. 27 0
      app/DoctrineMigrations/Version20180606123455.php

+ 27 - 0
app/DoctrineMigrations/Version20180606123455.php

@@ -0,0 +1,27 @@
+<?php
+
+namespace Application\Migrations;
+
+use Doctrine\DBAL\Schema\Schema;
+use MigrationsBundle\Migrations\MigrationsBase;
+
+/**
+ * Migración cablemodem_workflow
+ */
+class Version20180606123455 extends MigrationsBase
+{
+    /**
+     * @param Schema $schema
+     */
+    public function up(Schema $schema)
+    {
+        $this->executeYaml(__DIR__, 'Version20180124153518.yml');
+    }
+
+    /**
+     * @param Schema $schema
+     */
+    public function down(Schema $schema)
+    {
+    }
+}