From 7deeae85b90fcd43df24942ff88d8c6949d7c9a1 Mon Sep 17 00:00:00 2001 From: Devin Howard Date: Wed, 2 Jan 2013 18:41:34 -0500 Subject: [PATCH] removed items_to_topics migration file --- db/migrate/20130101215010_items_to_topics.rb | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 db/migrate/20130101215010_items_to_topics.rb diff --git a/db/migrate/20130101215010_items_to_topics.rb b/db/migrate/20130101215010_items_to_topics.rb deleted file mode 100644 index 0abfa4d4..00000000 --- a/db/migrate/20130101215010_items_to_topics.rb +++ /dev/null @@ -1,12 +0,0 @@ -class ItemsToTopics < ActiveRecord::Migration - def change - drop_table :topics - drop_table :metacodes - - rename_column :items, :item_category_id, :metacode_id - rename_column :mappings, :item_id, :topic_id - - rename_table :items, :topics - rename_table :item_categories, :metacodes - end -end