Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20141001132129_add_coverage_to_build.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 442a3dd28c0cf7616d7915b3c44bf9404f8471e7 (plain)
1
2
3
4
5
class AddCoverageToBuild < ActiveRecord::Migration
  def change
    add_column :builds, :coverage, :float
  end
end