Newer
Older
dmpopidor / db / migrate / 20130705145146_update_type_column_in_questions.rb
@Marta Ribeiro Marta Ribeiro on 3 Jun 2016 167 bytes DMPonline4 - RAILS 4.0 (#4)
class UpdateTypeColumnInQuestions < ActiveRecord::Migration
  	def change
    	change_table :questions do |t|
      		t.rename :type, :question_type
    	end
	end
end