diff options
author | Jeremy Benoist <j0k3r@users.noreply.github.com> | 2016-12-18 20:32:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-18 20:32:35 +0100 |
commit | 77e342f75d9c8da453a077bb826e722768389dcd (patch) | |
tree | 124a5f82a2cee26a7e3275509c9c320946db9d94 /app/DoctrineMigrations/Version20161122144743.php | |
parent | 57e629e154749a7e5e9787f05590073ca21e53f5 (diff) | |
parent | bea8d754171321fa6960ae8916da2a37667e7705 (diff) | |
download | wallabag-77e342f75d9c8da453a077bb826e722768389dcd.tar.gz wallabag-77e342f75d9c8da453a077bb826e722768389dcd.tar.zst wallabag-77e342f75d9c8da453a077bb826e722768389dcd.zip |
Merge pull request #2682 from wallabag/migration-config
Ensure craue_config_setting migration are ok
Diffstat (limited to 'app/DoctrineMigrations/Version20161122144743.php')
-rw-r--r-- | app/DoctrineMigrations/Version20161122144743.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/DoctrineMigrations/Version20161122144743.php b/app/DoctrineMigrations/Version20161122144743.php index 536b8339..388a0e4b 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 | ||