7 lines
163 B
Ruby
7 lines
163 B
Ruby
|
# frozen_string_literal: true
|
||
|
class InitReviewerVotes < ActiveRecord::Migration[5.0]
|
||
|
def up
|
||
|
Candidate.where(completed: true).each(&:build_reviews)
|
||
|
end
|
||
|
end
|