Sha256: 83ea26b35de9d656e5564d35e226f9b0607f2fe4cec4f00828b8e6200eaf75df

Contents?: true

Size: 507 Bytes

Versions: 44

Compression:

Stored size: 507 Bytes

Contents

class RemoveSearchHistories < ActiveRecord::Migration
  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

Version data entries

44 entries across 44 versions & 1 rubygems

Version Path
katello-3.5.2 db/migrate/20150602153754_remove_search_histories.rb
katello-3.5.1.1 db/migrate/20150602153754_remove_search_histories.rb
katello-3.5.1 db/migrate/20150602153754_remove_search_histories.rb
katello-3.5.0.1 db/migrate/20150602153754_remove_search_histories.rb
katello-3.5.0 db/migrate/20150602153754_remove_search_histories.rb
katello-3.5.0.rc2 db/migrate/20150602153754_remove_search_histories.rb
katello-3.5.0.rc1 db/migrate/20150602153754_remove_search_histories.rb
katello-3.4.5 db/migrate/20150602153754_remove_search_histories.rb
katello-3.4.4 db/migrate/20150602153754_remove_search_histories.rb
katello-3.4.2 db/migrate/20150602153754_remove_search_histories.rb
katello-3.4.1 db/migrate/20150602153754_remove_search_histories.rb
katello-3.4.0.2 db/migrate/20150602153754_remove_search_histories.rb
katello-3.4.0.1 db/migrate/20150602153754_remove_search_histories.rb
katello-3.3.2 db/migrate/20150602153754_remove_search_histories.rb
katello-3.4.0 db/migrate/20150602153754_remove_search_histories.rb
katello-3.4.0.rc2 db/migrate/20150602153754_remove_search_histories.rb
katello-3.4.0.rc1 db/migrate/20150602153754_remove_search_histories.rb
katello-3.3.1.1 db/migrate/20150602153754_remove_search_histories.rb
katello-3.3.1 db/migrate/20150602153754_remove_search_histories.rb
katello-3.3.0.1 db/migrate/20150602153754_remove_search_histories.rb