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

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

class AddIntegratedToErrorTrackingSetting < ActiveRecord::Migration[6.1]
  def up
    add_column :project_error_tracking_settings, :integrated, :boolean, null: false, default: false
  end

  def down
    remove_column :project_error_tracking_settings, :integrated
  end
end