summaryrefslogtreecommitdiff
path: root/db/migrate/20200206141511_change_saml_provider_outer_forks_default.rb
blob: 971cc4da921e031a37e534fad56e48dabaa8de33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class ChangeSamlProviderOuterForksDefault < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def up
    change_column_null :saml_providers, :prohibited_outer_forks, false
    change_column_default :saml_providers, :prohibited_outer_forks, true
  end

  def down
    change_column_default :saml_providers, :prohibited_outer_forks, false
    change_column_null :saml_providers, :prohibited_outer_forks, true
  end
end