summaryrefslogtreecommitdiff
path: root/db/migrate/20161202152031_remove_duplicates_from_routes.rb
blob: a21bde699951950f3b18551a4e9714ee08ce0ed2 (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
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class RemoveDuplicatesFromRoutes < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    # We can skip this migration when running a PostgreSQL database because
    # we use an optimized query in the "FillProjectsRoutesTable" migration
    # to fill these values that avoid duplicate entries in the routes table.
    return unless Gitlab::Database.mysql?

    select_all("SELECT path FROM #{quote_table_name(:routes)} GROUP BY path HAVING COUNT(*) > 1").each do |row|
      path = connection.quote(row['path'])
      execute(%Q{
        DELETE FROM #{quote_table_name(:routes)}
        WHERE path = #{path}
        AND id != (
          SELECT id FROM (
            SELECT max(id) AS id
            FROM #{quote_table_name(:routes)}
            WHERE path = #{path}
          ) max_ids
        )
      })
    end
  end

  def down
  end
end