aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20130124232354_create_refinerycms_resources_schema.refinery_resources.rb
blob: e3e626462fb392f9cb356f68b00e1618903ea60b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# This migration comes from refinery_resources (originally 20100913234709)
class CreateRefinerycmsResourcesSchema < ActiveRecord::Migration
  def change
    create_table :refinery_resources do |t|
      t.string   :file_mime_type
      t.string   :file_name
      t.integer  :file_size
      t.string   :file_uid
      t.string   :file_ext

      t.timestamps
    end
  end
end