aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authoradev <adev2000@gmail.com>2017-11-05 13:32:22 +0100
committeradev <adev2000@gmail.com>2017-11-21 21:35:17 +0100
commit18865cec8621d697e9b174ab4b9203517be5dfcc (patch)
tree1b7dfab6f009ed756614acdad03c73c0396f6805
parent2680b0bc8c9044b19b80a596f0005a1051b4ee54 (diff)
downloadwallabag-18865cec8621d697e9b174ab4b9203517be5dfcc.tar.gz
wallabag-18865cec8621d697e9b174ab4b9203517be5dfcc.tar.zst
wallabag-18865cec8621d697e9b174ab4b9203517be5dfcc.zip
Implements down migration
-rw-r--r--app/DoctrineMigrations/Version20160401000000.php13
1 files changed, 12 insertions, 1 deletions
diff --git a/app/DoctrineMigrations/Version20160401000000.php b/app/DoctrineMigrations/Version20160401000000.php
index 34d97d16..af135006 100644
--- a/app/DoctrineMigrations/Version20160401000000.php
+++ b/app/DoctrineMigrations/Version20160401000000.php
@@ -176,6 +176,17 @@ SQL
176 */ 176 */
177 public function down(Schema $schema) 177 public function down(Schema $schema)
178 { 178 {
179 //TODO: drop tables 179 $this->addSql('DROP TABLE wallabag_craue_config_setting');
180 $this->addSql('DROP TABLE "wallabag_tagging_rule"');
181 $this->addSql('DROP TABLE "wallabag_config"');
182 $this->addSql('DROP TABLE "wallabag_entry"');
183 $this->addSql('DROP TABLE wallabag_entry_tag');
184 $this->addSql('DROP TABLE "wallabag_tag"');
185 $this->addSql('DROP TABLE wallabag_oauth2_refresh_tokens');
186 $this->addSql('DROP TABLE wallabag_oauth2_access_tokens');
187 $this->addSql('DROP TABLE wallabag_oauth2_clients');
188 $this->addSql('DROP TABLE wallabag_oauth2_auth_codes');
189 $this->addSql('DROP TABLE "wallabag_user"');
190 $this->addSql('DROP TABLE wallabag_annotation');
180 } 191 }
181} 192}