Sha256: 5eb8918cdef3020db89404ee3ff1a16ed7c63fc6432b8110505b64ef49f519b2
Contents?: true
Size: 512 Bytes
Versions: 195
Compression:
Stored size: 512 Bytes
Contents
class RemoveSearchFavorites < ActiveRecord::Migration[4.2] def up drop_table :katello_search_favorites end def down create_table "katello_search_favorites", :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_favorites", ["user_id"], :name => "index_search_favorites_on_user_id" end end
Version data entries
195 entries across 195 versions & 1 rubygems