aboutsummaryrefslogtreecommitdiffhomepage
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-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}