You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
educoder/db/migrate/20190323005303_modify_gradu...

9 lines
360 B

class ModifyGraduationTopics < ActiveRecord::Migration[5.2]
def change
rename_column :graduation_topics, :source, :topic_source
rename_column :graduation_topics, :property, :topic_property_first
rename_column :graduation_topics, :property_two, :topic_property_second
rename_column :graduation_topics, :repeat, :topic_repeat
end
end