20110913200746_create_reported_image.rb 338 Bytes
class CreateReportedImage < ActiveRecord::Migration
  def self.up
    create_table :reported_images do |t|
      t.integer :size
      t.string  :content_type
      t.string  :filename
      t.integer :height
      t.integer :width
      t.references :abuse_report
    end
  end

  def self.down
    drop_table :reported_images
  end
end