Sha256: 2171e7a0d438ee0150da76cd1985bc4cfbeb5b456bb4a884701396beb968b4bf
Contents?: true
Size: 804 Bytes
Versions: 9
Compression:
Stored size: 804 Bytes
Contents
class RemoveNotices < ActiveRecord::Migration 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 t.datetime "created_at", :null => false t.datetime "updated_at", :null => false t.string "request_type" t.integer "organization_id" end add_index "katello_notices", ["organization_id"], :name => "index_notices_on_organization_id" end end
Version data entries
9 entries across 9 versions & 1 rubygems