You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20211213122102_remove_open_id_setting.rb 128B

12345
  1. class RemoveOpenIdSetting < ActiveRecord::Migration[6.1]
  2. def change
  3. Setting.where(:name => 'openid').delete_all
  4. end
  5. end