aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorKevin Decherf <kevin@kdecherf.com>2017-11-20 22:39:33 +0100
committerKevin Decherf <kevin@kdecherf.com>2017-11-20 22:39:33 +0100
commitb3d85e69e913ea4590a03498ced6c8589df3a36f (patch)
tree939de0410dc85008879c87f61c9eb848ed16f93a
parentf4f7994c40ca57c7e6f8ca0a3d298c50c4e5f813 (diff)
downloadwallabag-b3d85e69e913ea4590a03498ced6c8589df3a36f.tar.gz
wallabag-b3d85e69e913ea4590a03498ced6c8589df3a36f.tar.zst
wallabag-b3d85e69e913ea4590a03498ced6c8589df3a36f.zip
Fix MySQL issue on mig from #3373
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
-rw-r--r--app/DoctrineMigrations/Version20171008195606.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/DoctrineMigrations/Version20171008195606.php b/app/DoctrineMigrations/Version20171008195606.php
index c190f4ed..f09726c8 100644
--- a/app/DoctrineMigrations/Version20171008195606.php
+++ b/app/DoctrineMigrations/Version20171008195606.php
@@ -31,6 +31,7 @@ class Version20171008195606 extends AbstractMigration implements ContainerAwareI
31 31
32 switch ($this->connection->getDatabasePlatform()->getName()) { 32 switch ($this->connection->getDatabasePlatform()->getName()) {
33 case 'mysql': 33 case 'mysql':
34 $this->addSql('UPDATE ' . $this->getTable('entry') . ' SET reading_time = 0 WHERE reading_time IS NULL;');
34 $this->addSql('ALTER TABLE ' . $this->getTable('entry') . ' CHANGE reading_time reading_time INT(11) NOT NULL;'); 35 $this->addSql('ALTER TABLE ' . $this->getTable('entry') . ' CHANGE reading_time reading_time INT(11) NOT NULL;');
35 break; 36 break;
36 case 'postgresql': 37 case 'postgresql':