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

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

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

  def change
    add_column(:ci_daily_build_group_report_results, :group_id, :bigint)
  end
end