mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-25 18:41:05 +00:00
Implements down migration
This commit is contained in:
parent
2680b0bc8c
commit
18865cec86
1 changed files with 12 additions and 1 deletions
|
@ -176,6 +176,17 @@ SQL
|
||||||
*/
|
*/
|
||||||
public function down(Schema $schema)
|
public function down(Schema $schema)
|
||||||
{
|
{
|
||||||
//TODO: drop tables
|
$this->addSql('DROP TABLE wallabag_craue_config_setting');
|
||||||
|
$this->addSql('DROP TABLE "wallabag_tagging_rule"');
|
||||||
|
$this->addSql('DROP TABLE "wallabag_config"');
|
||||||
|
$this->addSql('DROP TABLE "wallabag_entry"');
|
||||||
|
$this->addSql('DROP TABLE wallabag_entry_tag');
|
||||||
|
$this->addSql('DROP TABLE "wallabag_tag"');
|
||||||
|
$this->addSql('DROP TABLE wallabag_oauth2_refresh_tokens');
|
||||||
|
$this->addSql('DROP TABLE wallabag_oauth2_access_tokens');
|
||||||
|
$this->addSql('DROP TABLE wallabag_oauth2_clients');
|
||||||
|
$this->addSql('DROP TABLE wallabag_oauth2_auth_codes');
|
||||||
|
$this->addSql('DROP TABLE "wallabag_user"');
|
||||||
|
$this->addSql('DROP TABLE wallabag_annotation');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue