Sha256: f700e9b77768e7c252bb9ef2ed807b61ed5c94bd4c7c074e91c63f8aa9be9fef
Contents?: true
Size: 430 Bytes
Versions: 44
Compression:
Stored size: 430 Bytes
Contents
class RemoveHelpTips < ActiveRecord::Migration 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
44 entries across 44 versions & 1 rubygems