summaryrefslogtreecommitdiff
path: root/db/migrate/20201019152046_add_default_branch_to_daily_build_group_report_result.rb
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