gitlab-org--gitlab-foss/db/migrate/20201019152046_add_default_...

12 lines
311 B
Ruby

# 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