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

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

class AddDefaultBranchToDailyBuildGroupReportResult < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :ci_daily_build_group_report_results, :default_branch, :boolean, default: false, null: false
  end
end