about summary refs log tree commit diff
path: root/db/migrate/20200510110808_reset_web_app_secret.rb
blob: 8c0c06a83ebec4b50f1e922a9a8503a9b06fbe8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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