9 lines
191 B
Ruby
9 lines
191 B
Ruby
class AddIpAddressToRunner < ActiveRecord::Migration
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
DOWNTIME = false
|
|
|
|
def change
|
|
add_column :ci_runners, :ip_address, :string
|
|
end
|
|
end
|