]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - app/DoctrineMigrations/Version20160410190541.php
Fixed migrations with dash into db name
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20160410190541.php
index 5de53d4b18b9f44e0f8ed1954418e3b81bbd70b3..e1bd3e5c6aefd91b276827e43650c5b116291768 100644 (file)
@@ -2,76 +2,36 @@
 
 namespace Application\Migrations;
 
-use Doctrine\DBAL\Migrations\AbstractMigration;
 use Doctrine\DBAL\Schema\Schema;
-use Symfony\Component\DependencyInjection\ContainerAwareInterface;
-use Symfony\Component\DependencyInjection\ContainerInterface;
+use Wallabag\CoreBundle\Doctrine\WallabagMigration;
 
-class Version20160410190541 extends AbstractMigration implements ContainerAwareInterface
+/**
+ * Added foreign keys for account resetting.
+ */
+class Version20160410190541 extends WallabagMigration
 {
     /**
-     * @var ContainerInterface
+     * @param Schema $schema
      */
-    private $container;
-
-    public function setContainer(ContainerInterface $container = null)
-    {
-        $this->container = $container;
-    }
-
-    private function getTable($tableName)
-    {
-        return $this->container->getParameter('database_table_prefix').$tableName;
-    }
-
-    private function hasColumn($tableName, $columnName)
+    public function up(Schema $schema)
     {
-        switch ($this->connection->getDatabasePlatform()->getName()) {
-            case 'sqlite':
-                $rows = $this->connection->executeQuery('pragma table_info('.$tableName.')')->fetchAll();
-                foreach ($rows as $column) {
-                    if (strcasecmp($column['name'], $columnName) === 0) {
-                        return true;
-                    }
-                }
+        $entryTable = $schema->getTable($this->getTable('entry'));
 
-                return false;
-            case 'mysql':
-                $rows = $this->connection->executeQuery('SHOW COLUMNS FROM '.$tableName)->fetchAll();
-                foreach ($rows as $column) {
-                    if (strcasecmp($column['Field'], $columnName) === 0) {
-                        return true;
-                    }
-                }
+        $this->skipIf($entryTable->hasColumn('uid') || $entryTable->hasColumn('uuid'), 'It seems that you already played this migration.');
 
-                return false;
-            case 'postgresql':
-                $sql = sprintf("SELECT count(*)
-                    FROM information_schema.columns
-                    WHERE table_schema = 'public' AND table_name = '%s' AND column_name = '%s'",
-                    $tableName,
-                    $columnName
-                );
-                $result = $this->connection->executeQuery($sql)->fetch();
+        $entryTable->addColumn('uid', 'string', [
+            'notnull' => false,
+            'length' => 23,
+        ]);
 
-                return  $result['count'] > 0;
-        }
-    }
+        $sharePublic = $this->container
+            ->get('doctrine.orm.default_entity_manager')
+            ->getConnection()
+            ->fetchArray('SELECT * FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'share_public'");
 
-    /**
-     * @param Schema $schema
-     */
-    public function up(Schema $schema)
-    {
-        $this->skipIf($this->hasColumn($this->getTable('entry'), 'uuid'), 'It seems that you already played this migration.');
-
-        if ($this->connection->getDatabasePlatform()->getName() == 'postgresql') {
-            $this->addSql('ALTER TABLE "'.$this->getTable('entry').'" ADD uuid UUID DEFAULT NULL');
-        } else {
-            $this->addSql('ALTER TABLE "'.$this->getTable('entry').'" ADD uuid LONGTEXT DEFAULT NULL');
+        if (false === $sharePublic) {
+            $this->addSql('INSERT INTO ' . $this->getTable('craue_config_setting') . " (name, value, section) VALUES ('share_public', '1', 'entry')");
         }
-
-        $this->addSql('INSERT INTO "'.$this->getTable('craue_config_setting')."\" (name, value, section) VALUES ('share_public', '1', 'entry')");
     }
 
     /**
@@ -79,9 +39,9 @@ class Version20160410190541 extends AbstractMigration implements ContainerAwareI
      */
     public function down(Schema $schema)
     {
-        $this->skipIf($this->connection->getDatabasePlatform()->getName() != 'sqlite', 'This down migration can\'t be executed on SQLite databases, because SQLite don\'t support DROP COLUMN.');
+        $entryTable = $schema->getTable($this->getTable('entry'));
+        $entryTable->dropColumn('uid');
 
-        $this->addSql('ALTER TABLE "'.$this->getTable('entry').'" DROP uuid');
-        $this->addSql('DELETE FROM "'.$this->getTable('craue_config_setting')."\" WHERE name = 'share_public'");
+        $this->addSql('DELETE FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'share_public'");
     }
 }