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

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

class AddLatestPipelineIdIntoVulnerabilityStatisticsTable < ActiveRecord::Migration[6.0]
  def change
    add_column :vulnerability_statistics, :latest_pipeline_id, :bigint
  end
end