Sha256: 79151eac0dc64fa54eeced30a32a7b6fdb259001835a0b6f0e1bae45064df146
Contents?: true
Size: 435 Bytes
Versions: 195
Compression:
Stored size: 435 Bytes
Contents
class RemoveHelpTips < ActiveRecord::Migration[4.2] def up drop_table :katello_help_tips end def down create_table "katello_help_tips", :force => true do |t| t.string "key", :limit => 255 t.integer "user_id" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false end add_index "katello_help_tips", ["user_id"], :name => "index_help_tips_on_user_id" end end
Version data entries
195 entries across 195 versions & 1 rubygems