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

20191009110124_add_has_exposed_artifacts_to_ci_builds_metadata.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 86c3c540e5e37e2fb2fb7a7bd3bdfec928ae2cfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class AddHasExposedArtifactsToCiBuildsMetadata < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def up
    add_column :ci_builds_metadata, :has_exposed_artifacts, :boolean
  end

  def down
    remove_column :ci_builds_metadata, :has_exposed_artifacts
  end
end