summaryrefslogtreecommitdiff
path: root/db/migrate/20140729145339_migrate_project_tags.rb
blob: 711a2d262aa0b351520a2f36d19e6a3c9748c594 (plain)
1
2
3
4
5
6
7
8
9
class MigrateProjectTags < ActiveRecord::Migration[4.2]
  def up
    ActsAsTaggableOn::Tagging.where(taggable_type: 'Project', context: 'labels').update_all(context: 'tags')
  end

  def down
    ActsAsTaggableOn::Tagging.where(taggable_type: 'Project', context: 'tags').update_all(context: 'labels')
  end
end