Sha256: 2e92c718d7111402c3513617f7349e99287e4d0535814db38523d9622e489e5c
Contents?: true
Size: 477 Bytes
Versions: 9
Compression:
Stored size: 477 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" t.string "path" 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
9 entries across 9 versions & 1 rubygems