cirandas.net

ref: master

plugins/evaluation/db/migrate/20120214195245_change_evaluation_to_object_in_evaluation.rb


1
2
3
4
5
6
7
8
9
class ChangeEvaluationToObjectInEvaluation < ActiveRecord::Migration
  def self.up
    rename_column :evaluation_plugin_evaluations, :evaluation_id, :object_id
    rename_column :evaluation_plugin_evaluations, :evaluation_type, :object_type
  end

  def self.down
  end
end