017_create_images.rb 523 Bytes
class CreateImages < ActiveRecord::Migration
  def self.up
    create_table :images do |t|
      t.column :owner_type,    :string
      t.column :owner_id,      :integer
      
      t.column :parent_id,     :integer
      t.column :content_type,  :string
      t.column :filename,      :string    
      t.column :thumbnail,     :string 
      t.column :size,          :integer
      t.column :width,         :integer
      t.column :height,        :integer
    end
  end

  def self.down
    drop_table :images
  end
end