aboutsummaryrefslogtreecommitdiffhomepage
path: root/app
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-12-13 10:41:47 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-12-19 10:35:25 +0100
commit6514f0ed37da14346338b11ee055c1d49813df49 (patch)
treefbd1c646687c09050045f7b87d675fe651073433 /app
parentd44016b072ebe146f3f875f6bf3e9268b367867e (diff)
downloadwallabag-6514f0ed37da14346338b11ee055c1d49813df49.tar.gz
wallabag-6514f0ed37da14346338b11ee055c1d49813df49.tar.zst
wallabag-6514f0ed37da14346338b11ee055c1d49813df49.zip
fixup! Run migration in test, ready for MySQL
Diffstat (limited to 'app')
-rw-r--r--app/DoctrineMigrations/Version20161022134138.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/DoctrineMigrations/Version20161022134138.php b/app/DoctrineMigrations/Version20161022134138.php
index 22469f63..d0e5cb3f 100644
--- a/app/DoctrineMigrations/Version20161022134138.php
+++ b/app/DoctrineMigrations/Version20161022134138.php
@@ -35,7 +35,7 @@ class Version20161022134138 extends AbstractMigration implements ContainerAwareI
35 35
36 // convert field length for utf8mb4 36 // convert field length for utf8mb4
37 // http://stackoverflow.com/a/31474509/569101 37 // http://stackoverflow.com/a/31474509/569101
38 $this->addSql('ALTER TABLE '.$this->getTable('user').' CHANGE confirmation_token confirmation_token VARCHAR(180) NOT NULL;'); 38 $this->addSql('ALTER TABLE '.$this->getTable('user').' CHANGE confirmation_token confirmation_token VARCHAR(180) DEFAULT NULL;');
39 $this->addSql('ALTER TABLE '.$this->getTable('user').' CHANGE salt salt VARCHAR(180) NOT NULL;'); 39 $this->addSql('ALTER TABLE '.$this->getTable('user').' CHANGE salt salt VARCHAR(180) NOT NULL;');
40 $this->addSql('ALTER TABLE '.$this->getTable('user').' CHANGE password password VARCHAR(180) NOT NULL;'); 40 $this->addSql('ALTER TABLE '.$this->getTable('user').' CHANGE password password VARCHAR(180) NOT NULL;');
41 41