aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/DoctrineMigrations/Version20161117071626.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-12-04 12:56:20 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-12-15 22:25:10 +0100
commit31fec5f363b915fb694d9a6e925d02da1e83b508 (patch)
treed0142577dd499fdd34f4d3d6ab483c965fd09220 /app/DoctrineMigrations/Version20161117071626.php
parent24becc9717423748e6ef06c6cf1c499435af66b9 (diff)
downloadwallabag-31fec5f363b915fb694d9a6e925d02da1e83b508.tar.gz
wallabag-31fec5f363b915fb694d9a6e925d02da1e83b508.tar.zst
wallabag-31fec5f363b915fb694d9a6e925d02da1e83b508.zip
Ensure craue_config_setting migration are ok
We now can run the migration every time, new line from `craue_config_setting` are properly checked.
Diffstat (limited to 'app/DoctrineMigrations/Version20161117071626.php')
-rw-r--r--app/DoctrineMigrations/Version20161117071626.php21
1 files changed, 19 insertions, 2 deletions
diff --git a/app/DoctrineMigrations/Version20161117071626.php b/app/DoctrineMigrations/Version20161117071626.php
index 33f5707e..e65598a9 100644
--- a/app/DoctrineMigrations/Version20161117071626.php
+++ b/app/DoctrineMigrations/Version20161117071626.php
@@ -29,8 +29,25 @@ class Version20161117071626 extends AbstractMigration implements ContainerAwareI
29 */ 29 */
30 public function up(Schema $schema) 30 public function up(Schema $schema)
31 { 31 {
32 $this->addSql('INSERT INTO '.$this->getTable('craue_config_setting')." (name, value, section) VALUES ('share_unmark', 0, 'entry')"); 32 $share = $this->container
33 $this->addSql('INSERT INTO '.$this->getTable('craue_config_setting')." (name, value, section) VALUES ('unmark_url', 'https://unmark.it', 'entry')"); 33 ->get('doctrine.orm.default_entity_manager')
34 ->getConnection()
35 ->fetchArray('SELECT * FROM '.$this->getTable('craue_config_setting').' WHERE name = "share_unmark"');
36
37 if (false === $share) {
38 $this->addSql('INSERT INTO '.$this->getTable('craue_config_setting')." (name, value, section) VALUES ('share_unmark', 0, 'entry')");
39 }
40
41 $unmark = $this->container
42 ->get('doctrine.orm.default_entity_manager')
43 ->getConnection()
44 ->fetchArray('SELECT * FROM '.$this->getTable('craue_config_setting').' WHERE name = "unmark_url"');
45
46 if (false === $unmark) {
47 $this->addSql('INSERT INTO '.$this->getTable('craue_config_setting')." (name, value, section) VALUES ('unmark_url', 'https://unmark.it', 'entry')");
48 }
49
50 $this->skipIf(false !== $share && false !== $unmark, 'It seems that you already played this migration.');
34 } 51 }
35 52
36 /** 53 /**