debian-mirror-gitlab/db/migrate/20191111165017_add_fixed_pipeline_to_notification_settings.rb
2020-04-08 14:13:33 +05:30

10 lines
215 B
Ruby

# frozen_string_literal: true
class AddFixedPipelineToNotificationSettings < ActiveRecord::Migration[5.2]
DOWNTIME = false
def change
add_column :notification_settings, :fixed_pipeline, :boolean
end
end