aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20130124232353_create_refinerycms_images_schema.refinery_images.rb
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2013-01-25 21:53:05 +0100
committerHarald Eilertsen <haraldei@anduin.net>2013-01-25 21:53:05 +0100
commitf087c23c8600fe197d3a59f4a0cd839754459b37 (patch)
tree5577105a38545b143efec0bdb8c134bea04005c8 /db/migrate/20130124232353_create_refinerycms_images_schema.refinery_images.rb
downloadhmnoweb-f087c23c8600fe197d3a59f4a0cd839754459b37.tar.gz
hmnoweb-f087c23c8600fe197d3a59f4a0cd839754459b37.tar.bz2
hmnoweb-f087c23c8600fe197d3a59f4a0cd839754459b37.zip
Initial commit.
Diffstat (limited to 'db/migrate/20130124232353_create_refinerycms_images_schema.refinery_images.rb')
-rw-r--r--db/migrate/20130124232353_create_refinerycms_images_schema.refinery_images.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/db/migrate/20130124232353_create_refinerycms_images_schema.refinery_images.rb b/db/migrate/20130124232353_create_refinerycms_images_schema.refinery_images.rb
new file mode 100644
index 0000000..94831c2
--- /dev/null
+++ b/db/migrate/20130124232353_create_refinerycms_images_schema.refinery_images.rb
@@ -0,0 +1,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