class RemoveSearchHistories < ActiveRecord::Migration[4.2] def up drop_table :katello_search_histories end def down create_table "katello_search_histories", :force => true do |t| t.string "params", :limit => 255 t.string "path", :limit => 255 t.integer "user_id" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false end add_index "katello_search_histories", ["user_id"], :name => "index_search_histories_on_user_id" end end