gitlab-org--gitlab-foss/db/migrate/20180222043024_add_ip_addre...

10 lines
239 B
Ruby

class AddIpAddressToRunner < ActiveRecord::Migration[4.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
add_column :ci_runners, :ip_address, :string # rubocop:disable Migration/PreventStrings
end
end