From 6a72037c41d7f18b9f20b3b8af88dd725ab523e3 Mon Sep 17 00:00:00 2001 From: "paul.baranowski" Date: Thu, 24 Mar 2011 11:52:44 -0400 Subject: [PATCH] Added migration to drop tables we dont use anymore. --- .../Version20110312121200.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 install/DoctrineMigrations/Version20110312121200.php diff --git a/install/DoctrineMigrations/Version20110312121200.php b/install/DoctrineMigrations/Version20110312121200.php new file mode 100644 index 000000000..8bf20d856 --- /dev/null +++ b/install/DoctrineMigrations/Version20110312121200.php @@ -0,0 +1,19 @@ +dropTable("cc_backup"); + $schema->dropTable("cc_trans"); + } + + public function down(Schema $schema) + { + } +}