Sha256: 0a45f3afe72ac81d6e080287c8b0e285b53481701c0708b22a78960766a5cc9a
Contents?: true
Size: 790 Bytes
Versions: 35
Compression:
Stored size: 790 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, :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
35 entries across 35 versions & 1 rubygems