diff options
author | Thomas Citharel <tcit@tcit.fr> | 2016-10-15 14:42:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-15 14:42:46 +0200 |
commit | 76f2123defe40d7315597938f182fed386707765 (patch) | |
tree | 56760496bdb917314dfef54306411fddbf1c21e2 /app/DoctrineMigrations/Version20160812120952.php | |
parent | 7131f94274a7a4fb15e822d3f8ef5fa4d9594144 (diff) | |
parent | 4c79c51f998fbec0caba3cf20291a9a54916af09 (diff) | |
download | wallabag-76f2123defe40d7315597938f182fed386707765.tar.gz wallabag-76f2123defe40d7315597938f182fed386707765.tar.zst wallabag-76f2123defe40d7315597938f182fed386707765.zip |
Merge pull request #2412 from wallabag/fix-postgres-migration
Fix PostgreSQL migrations
Diffstat (limited to 'app/DoctrineMigrations/Version20160812120952.php')
-rw-r--r-- | app/DoctrineMigrations/Version20160812120952.php | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/app/DoctrineMigrations/Version20160812120952.php b/app/DoctrineMigrations/Version20160812120952.php index a8d3bcf2..3aafea64 100644 --- a/app/DoctrineMigrations/Version20160812120952.php +++ b/app/DoctrineMigrations/Version20160812120952.php | |||
@@ -29,10 +29,15 @@ class Version20160812120952 extends AbstractMigration implements ContainerAwareI | |||
29 | */ | 29 | */ |
30 | public function up(Schema $schema) | 30 | public function up(Schema $schema) |
31 | { | 31 | { |
32 | if ($this->connection->getDatabasePlatform()->getName() == 'sqlite') { | 32 | switch ($this->connection->getDatabasePlatform()->getName()) { |
33 | $this->addSql('ALTER TABLE '.$this->getTable('oauth2_clients').' ADD name longtext DEFAULT NULL'); | 33 | case 'sqlite': |
34 | } else { | 34 | $this->addSql('ALTER TABLE '.$this->getTable('oauth2_clients').' ADD name longtext DEFAULT NULL'); |
35 | $this->addSql('ALTER TABLE '.$this->getTable('oauth2_clients').' ADD name longtext COLLATE \'utf8_unicode_ci\' DEFAULT NULL'); | 35 | break; |
36 | case 'mysql': | ||
37 | $this->addSql('ALTER TABLE '.$this->getTable('oauth2_clients').' ADD name longtext COLLATE \'utf8_unicode_ci\' DEFAULT NULL'); | ||
38 | break; | ||
39 | case 'postgresql': | ||
40 | $this->addSql('ALTER TABLE '.$this->getTable('oauth2_clients').' ADD name text DEFAULT NULL'); | ||
36 | } | 41 | } |
37 | } | 42 | } |
38 | 43 | ||