Sha256: 40aa8a5cde76ab09ee26291d4cad3b92f9ec6e67f554ba37c9af4d407fa21a87
Contents?: true
Size: 415 Bytes
Versions: 9
Compression:
Stored size: 415 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" 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
9 entries across 9 versions & 1 rubygems