summaryrefslogtreecommitdiff
path: root/db/migrate/20130506095501_remove_project_id_from_key.rb
blob: 53abc4e7b52bc29744c4af2d5200293ae95eac6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# rubocop:disable all
class RemoveProjectIdFromKey < ActiveRecord::Migration
  def up
    puts 'Migrate deploy keys: '
    Key.where('project_id IS NOT NULL').update_all(type: 'DeployKey')

    DeployKey.all.each do |key|
      project = Project.find_by(id: key.project_id)
      if project
        project.deploy_keys << key
        print '.'
      end
    end

    puts 'Done'

    remove_column :keys, :project_id
  end

  def down
    add_column :keys, :project_id, :integer
  end
end