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.
11 lines
433 B
11 lines
433 B
class InitCompetitionCertificateModuleData < ActiveRecord::Migration[5.2]
|
|
def change
|
|
Competition.find_each do |competition|
|
|
competition.competition_modules.where(module_type: 'certificate').delete_all
|
|
|
|
position = competition.competition_modules.maximum(:position) + 1
|
|
competition.competition_modules.create(module_type: 'certificate', position: position, name: '获奖证书', hidden: true)
|
|
end
|
|
end
|
|
end
|