diff options
author | adev <adev2000@gmail.com> | 2017-11-05 13:32:22 +0100 |
---|---|---|
committer | adev <adev2000@gmail.com> | 2017-11-21 21:35:17 +0100 |
commit | 18865cec8621d697e9b174ab4b9203517be5dfcc (patch) | |
tree | 1b7dfab6f009ed756614acdad03c73c0396f6805 /app/DoctrineMigrations | |
parent | 2680b0bc8c9044b19b80a596f0005a1051b4ee54 (diff) | |
download | wallabag-18865cec8621d697e9b174ab4b9203517be5dfcc.tar.gz wallabag-18865cec8621d697e9b174ab4b9203517be5dfcc.tar.zst wallabag-18865cec8621d697e9b174ab4b9203517be5dfcc.zip |
Implements down migration
Diffstat (limited to 'app/DoctrineMigrations')
-rw-r--r-- | app/DoctrineMigrations/Version20160401000000.php | 13 |
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 | } |