Sha256: 6cc1a1f80ba3cac0703976b1e7dcaec4bc27bd045265fd367fc7fc8aef367aa1
Contents?: true
Size: 795 Bytes
Versions: 195
Compression:
Stored size: 795 Bytes
Contents
class RemoveNotices < ActiveRecord::Migration[4.2] def up drop_table :katello_notices end def down create_table "katello_notices", :force => true do |t| t.string "text", :limit => 1024, :null => false t.text "details" t.boolean "global", :default => false, :null => false t.string "level", :null => false, :limit => 255 t.datetime "created_at", :null => false t.datetime "updated_at", :null => false t.string "request_type", :limit => 255 t.integer "organization_id" end add_index "katello_notices", ["organization_id"], :name => "index_notices_on_organization_id" end end
Version data entries
195 entries across 195 versions & 1 rubygems