Newer
Older
dmpopidor / db / migrate / 20140331160554_question_formats.rb
class QuestionFormats < ActiveRecord::Migration
  def change 
 		create_table :question_formats do |t|
      t.string :title
      t.text :description
      
      t.timestamps
  	end
  end
end