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

20151230132518_add_artifacts_metadata_to_ci_build.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6c282fc50394eb6daa761c1344acd338c94848d5 (plain)
1
2
3
4
5
class AddArtifactsMetadataToCiBuild < ActiveRecord::Migration
  def change
    add_column :ci_builds, :artifacts_metadata, :text
  end
end