]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Fixed @Kdecherf's review 3373/head
authorNicolas Lœuillet <nicolas@loeuillet.org>
Fri, 13 Oct 2017 07:37:03 +0000 (09:37 +0200)
committerNicolas Lœuillet <nicolas@loeuillet.org>
Fri, 13 Oct 2017 08:11:24 +0000 (10:11 +0200)
app/DoctrineMigrations/Version20171008195606.php

index 87828afd2cc2fc3f75609fcafb3512dc4c65d6c2..c190f4ed38324a6ee07ca759de1953b25dd90a3d 100644 (file)
@@ -34,6 +34,7 @@ class Version20171008195606 extends AbstractMigration implements ContainerAwareI
                 $this->addSql('ALTER TABLE ' . $this->getTable('entry') . ' CHANGE reading_time reading_time INT(11) NOT NULL;');
                 break;
             case 'postgresql':
+                $this->addSql('UPDATE ' . $this->getTable('entry') . ' SET reading_time = 0 WHERE reading_time IS NULL;');
                 $this->addSql('ALTER TABLE ' . $this->getTable('entry') . ' ALTER COLUMN reading_time SET NOT NULL;');
                 break;
         }