Merge branch 'dev_aliyun' of https://bdgit.educoder.net/Hjqreturn/educoder into dev_aliyun
commit
c94ef06a66
@ -1,14 +1,5 @@
|
||||
class MigrateCompetitionChartRules < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
add_column :competition_module_md_contents, :competition_stage_id, :integer, default: 0
|
||||
|
||||
ChartRule.all.each do |rule|
|
||||
if rule.competition
|
||||
com_module = rule.competition.competition_modules.find_by(module_type: "chart")
|
||||
if com_module
|
||||
CompetitionModuleMdContent.create!(content: rule.content, competition_module_id: com_module.id, competition_stage_id: rule.competition_stage_id ? rule.competition_stage_id : 0)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -0,0 +1,12 @@
|
||||
class MigrateChartRule < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
ChartRule.all.each do |rule|
|
||||
if rule.competition
|
||||
com_module = rule.competition.competition_modules.find_by(module_type: "chart")
|
||||
if com_module && !com_module.competition_module_md_contents.exists?(competition_stage_id: rule.competition_stage_id ? rule.competition_stage_id : 0)
|
||||
CompetitionModuleMdContent.create!(content: rule.content, competition_module_id: com_module.id, competition_stage_id: rule.competition_stage_id ? rule.competition_stage_id : 0)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
@ -0,0 +1,7 @@
|
||||
class ReCounterCourseGroups < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
CourseGroup.find_each do |group|
|
||||
CourseGroup.reset_counters(group.id, :course_members_count)
|
||||
end
|
||||
end
|
||||
end
|
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue