Sha256: f402954693ddac7d9676fb68f00be6a05ba179b3e3abfc75b5c3d6179cc37335
Contents?: true
Size: 503 Bytes
Versions: 193
Compression:
Stored size: 503 Bytes
Contents
class RemoveUserNotices < ActiveRecord::Migration[4.2] def up drop_table :katello_user_notices end def down create_table "katello_user_notices", :force => true do |t| t.integer "user_id" t.integer "notice_id" t.boolean "viewed", :default => false, :null => false end add_index "katello_user_notices", ["notice_id"], :name => "index_user_notices_on_notice_id" add_index "katello_user_notices", ["user_id"], :name => "index_user_notices_on_user_id" end end
Version data entries
193 entries across 193 versions & 1 rubygems