summaryrefslogtreecommitdiff
path: root/db/migrate/20191111165017_add_fixed_pipeline_to_notification_settings.rb
blob: 7a85780746850e3f32066f8c38fc375ff28fb050 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddFixedPipelineToNotificationSettings < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def change
    add_column :notification_settings, :fixed_pipeline, :boolean
  end
end