Sha256: e111de3097eb41955dd48100c917115047df69d556de34d46865aadbea93390b

Contents?: true

Size: 552 Bytes

Versions: 68

Compression:

Stored size: 552 Bytes

Contents

class NormalizeEmotions < ActiveRecord::Migration
  def change
    Participant.all.each do |participant|
      participant.emotions.each do |emotion|
        existing_emotion = participant.emotions.where(name: emotion.name.strip.downcase).first

        if existing_emotion && existing_emotion.id != emotion.id
          EmotionalRating.where(emotion_id: emotion.id).each do |e|
            e.update!(emotion_id: existing_emotion.id)
          end
          emotion.destroy!
        else
          emotion.save!
        end
      end
    end
  end
end

Version data entries

68 entries across 68 versions & 1 rubygems

Version Path
think_feel_do_engine-3.22.9 db/migrate/20140721190945_normalize_emotions.rb
think_feel_do_engine-3.22.8 db/migrate/20140721190945_normalize_emotions.rb
think_feel_do_engine-3.22.7 db/migrate/20140721190945_normalize_emotions.rb
think_feel_do_engine-3.22.6 db/migrate/20140721190945_normalize_emotions.rb
think_feel_do_engine-3.22.5 db/migrate/20140721190945_normalize_emotions.rb
think_feel_do_engine-3.22.4 db/migrate/20140721190945_normalize_emotions.rb
think_feel_do_engine-3.22.2 db/migrate/20140721190945_normalize_emotions.rb
think_feel_do_engine-3.22.1 db/migrate/20140721190945_normalize_emotions.rb
think_feel_do_engine-3.22.0 db/migrate/20140721190945_normalize_emotions.rb
think_feel_do_engine-3.21.2 db/migrate/20140721190945_normalize_emotions.rb
think_feel_do_engine-3.21.1 db/migrate/20140721190945_normalize_emotions.rb
think_feel_do_engine-3.21.0 db/migrate/20140721190945_normalize_emotions.rb
think_feel_do_engine-3.20.1 db/migrate/20140721190945_normalize_emotions.rb
think_feel_do_engine-3.19.9 db/migrate/20140721190945_normalize_emotions.rb
think_feel_do_engine-3.19.8 db/migrate/20140721190945_normalize_emotions.rb
think_feel_do_engine-3.19.7 db/migrate/20140721190945_normalize_emotions.rb
think_feel_do_engine-3.19.6 db/migrate/20140721190945_normalize_emotions.rb
think_feel_do_engine-3.19.5 db/migrate/20140721190945_normalize_emotions.rb
think_feel_do_engine-3.19.4 db/migrate/20140721190945_normalize_emotions.rb
think_feel_do_engine-3.19.3 db/migrate/20140721190945_normalize_emotions.rb