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: a54ac9d57a4832bcb3080afbbc89ee49b7d5bd88 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddArtifactsFileToBuilds < ActiveRecord::Migration
  def change
    add_column :ci_builds, :artifacts_file, :text
  end
end