aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/DoctrineMigrations/Version20161122144743.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/Version20161122144743.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/Version20161122144743.php')
-rw-r--r--app/DoctrineMigrations/Version20161122144743.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/DoctrineMigrations/Version20161122144743.php b/app/DoctrineMigrations/Version20161122144743.php
index 536b8339..02113031 100644
--- a/app/DoctrineMigrations/Version20161122144743.php
+++ b/app/DoctrineMigrations/Version20161122144743.php
@@ -32,6 +32,13 @@ class Version20161122144743 extends AbstractMigration implements ContainerAwareI
32 */ 32 */
33 public function up(Schema $schema) 33 public function up(Schema $schema)
34 { 34 {
35 $access = $this->container
36 ->get('doctrine.orm.default_entity_manager')
37 ->getConnection()
38 ->fetchArray('SELECT * FROM '.$this->getTable('craue_config_setting').' WHERE name = "restricted_access"');
39
40 $this->skipIf(false !== $access, 'It seems that you already played this migration.');
41
35 $this->addSql('INSERT INTO '.$this->getTable('craue_config_setting')." (name, value, section) VALUES ('restricted_access', 0, 'entry')"); 42 $this->addSql('INSERT INTO '.$this->getTable('craue_config_setting')." (name, value, section) VALUES ('restricted_access', 0, 'entry')");
36 } 43 }
37 44