summaryrefslogtreecommitdiff
path: root/db/migrate/20180711103851_drop_duplicate_protected_tags.rb
blob: 6166aa65f1fb89dd1b2b305fcef761e11f3d14eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class DropDuplicateProtectedTags < ActiveRecord::Migration[4.2]
  DOWNTIME = false

  disable_ddl_transaction!

  BATCH_SIZE = 1000

  class Project < ActiveRecord::Base
    self.table_name = 'projects'

    include ::EachBatch
  end

  class ProtectedTag < ActiveRecord::Base
    self.table_name = 'protected_tags'
  end

  def up
    Project.each_batch(of: BATCH_SIZE) do |projects|
      ids = ProtectedTag
        .where(project_id: projects)
        .group(:name, :project_id)
        .select('max(id)')

      tags = ProtectedTag
        .where(project_id: projects)
        .where.not(id: ids)

      if Gitlab::Database.postgresql?
        tags.delete_all
      else
        # Workaround needed for MySQL
        sql = "SELECT id FROM (#{tags.to_sql}) protected_tags"

        ProtectedTag.where("id IN (#{sql})").delete_all # rubocop:disable GitlabSecurity/SqlInjection
      end
    end
  end

  def down
  end
end