Bläddra i källkod

migracion para acciones de onu

Luciano Andrade 7 år sedan
förälder
incheckning
12a684d692

Filskillnaden har hållts tillbaka eftersom den är för stor
+ 106 - 0
app/DoctrineMigrations/Templates20171219120324/actions.yml


+ 31 - 0
app/DoctrineMigrations/Version20171219120324.php

@@ -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
+
+    }
+}