From 1de4976915ab353808252d923d2b0ded300893bc Mon Sep 17 00:00:00 2001 From: Sarah Mei Date: Wed, 2 Feb 2011 08:54:57 -0800 Subject: [PATCH] remove histories table from schema.rb. this is why you don't edit or revert migrations >.< --- db/schema.rb | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/db/schema.rb b/db/schema.rb index ec2e0c9ab..7744fb065 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -80,19 +80,6 @@ ActiveRecord::Schema.define(:version => 20110202015222) do add_index "data_points", ["statistic_id"], :name => "index_data_points_on_statistic_id" - create_table "histories", :force => true do |t| - t.string "message" - t.string "username" - t.integer "item" - t.string "table" - t.integer "month", :limit => 2 - t.integer "year", :limit => 8 - t.datetime "created_at" - t.datetime "updated_at" - end - - add_index "histories", ["item", "table", "month", "year"], :name => "index_histories_on_item_and_table_and_month_and_year" - create_table "invitations", :force => true do |t| t.text "message" t.integer "sender_id", :null => false @@ -472,7 +459,6 @@ ActiveRecord::Schema.define(:version => 20110202015222) do t.string "mongo_id" t.string "invitation_service" t.string "invitation_identifier" - t.text "open_aspects" end add_index "users", ["email"], :name => "index_users_on_email"