summaryrefslogtreecommitdiffstats
path: root/db/migrate/20211213122102_remove_open_id_setting.rb
blob: 98c11f8aa43352f1bbaf2a28b3806da3f7e4f7f3 (plain)
1
2
3
4
5
class RemoveOpenIdSetting < ActiveRecord::Migration[6.1]
  def change
    Setting.where(:name => 'openid').delete_all
  end
end