blob: 94831c2ae2b800f3c1af810a1f14bd81fb9cebe8 (
plain) (
tree)
|
|
# 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
|