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

20200810152043_add_expire_at_to_ci_pipeline_artifact.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1aaa0f36f16d1b4d25629c2ea02757edef7affa3 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddExpireAtToCiPipelineArtifact < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :ci_pipeline_artifacts, :expire_at, :datetime_with_timezone
  end
end