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

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