debian-mirror-gitlab/db/migrate/20181108091549_cleanup_environments_external_url.rb
2019-02-15 15:39:39 +05:30

19 lines
386 B
Ruby

# frozen_string_literal: true
class CleanupEnvironmentsExternalUrl < ActiveRecord::Migration[4.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
update_column_in_batches(:environments, :external_url, nil) do |table, query|
query.where(table[:external_url].matches('javascript://%'))
end
end
def down
end
end