summaryrefslogtreecommitdiff
path: root/db/migrate/20200424050250_remove_orphaned_invited_members.rb
blob: 0fb2f7d9c39d6a371b4fa38ea4e4a841fe876fb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class RemoveOrphanedInvitedMembers < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def up
    # As of 2020-04-23, there are 19 entries on GitLab.com that match this criteria.
    execute "DELETE FROM members WHERE user_id IS NULL AND invite_token IS NULL AND invite_accepted_at IS NOT NULL"
  end

  def down
  end
end