aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20130124232353_create_refinerycms_images_schema.refinery_images.rb
blob: 94831c2ae2b800f3c1af810a1f14bd81fb9cebe8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# This migration comes from refinery_images (originally 20100913234707)
class CreateRefinerycmsImagesSchema < ActiveRecord::Migration
  def change
    create_table :refinery_images do |t|
      t.string   :image_mime_type
      t.string   :image_name
      t.integer  :image_size
      t.integer  :image_width
      t.integer  :image_height
      t.string   :image_uid
      t.string   :image_ext

      t.timestamps
    end
  end
end