about summary refs log tree commit diff
path: root/db/migrate/20200510110808_reset_web_app_secret.rb
blob: b274844c58526692c375e4998c389a947ea52040 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class ResetWebAppSecret < ActiveRecord::Migration[5.2]
  disable_ddl_transaction!

  def up
    web_app = Doorkeeper::Application.find_by(superapp: true)

    return if web_app.nil?

    web_app.renew_secret
    web_app.save!
  end

  def down
  end
end