Sha256: 157b5716e780d788f4f75e08c42b817056d763e7e1d8edbd38b0c5d945ca4ba8

Contents?: true

Size: 477 Bytes

Versions: 9

Compression:

Stored size: 477 Bytes

Contents

class RemoveSearchFavorites < ActiveRecord::Migration
  def up
    drop_table :katello_search_favorites
  end

  def down
    create_table "katello_search_favorites", :force => true do |t|
      t.string   "params"
      t.string   "path"
      t.integer  "user_id"
      t.datetime "created_at", :null => false
      t.datetime "updated_at", :null => false
    end

    add_index "katello_search_favorites", ["user_id"], :name => "index_search_favorites_on_user_id"
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
katello-2.4.5 db/migrate/20150602153755_remove_search_favorites.rb
katello-2.4.4 db/migrate/20150602153755_remove_search_favorites.rb
katello-2.4.3 db/migrate/20150602153755_remove_search_favorites.rb
katello-2.4.2 db/migrate/20150602153755_remove_search_favorites.rb
katello-2.4.1 db/migrate/20150602153755_remove_search_favorites.rb
katello-2.4.0 db/migrate/20150602153755_remove_search_favorites.rb
katello-2.4.0.rc3 db/migrate/20150602153755_remove_search_favorites.rb
katello-2.4.0.rc2 db/migrate/20150602153755_remove_search_favorites.rb
katello-2.4.0.rc1 db/migrate/20150602153755_remove_search_favorites.rb