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

20160628085157_add_artifacts_size_to_ci_builds.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 60bd4c36eb6b1e688aad78280bc84abd1c9f7875 (plain)
1
2
3
4
5
6
7
class AddArtifactsSizeToCiBuilds < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  def change
    add_column(:ci_builds, :artifacts_size, :integer)
  end
end