gitlab-org--gitlab-foss/db/migrate/20150429002313_remove_aband...

11 lines
265 B
Ruby

# rubocop:disable all
class RemoveAbandonedGroupMembersRecords < ActiveRecord::Migration
def up
execute("DELETE FROM members WHERE type = 'GroupMember' AND source_id NOT IN(\
SELECT id FROM namespaces WHERE type='Group')")
end
def down
end
end