Newer
Older
dmpopidor / db / migrate / 20130611154109_create_file_types.rb
@Marta Ribeiro Marta Ribeiro on 3 Jun 2016 249 bytes DMPonline4 - RAILS 4.0 (#4)
class CreateFileTypes < ActiveRecord::Migration
  def change
    create_table :file_types do |t|
      t.string :file_type_name
      t.string :icon_name
      t.integer :icon_size
      t.string :icon_location

      t.timestamps
    end
  end
end