Add required column for Doorkeeper 5

This commit is contained in:
wvengen 2018-10-13 21:53:23 +02:00 committed by wvengen
parent 0d9acd3082
commit 99ecb75c83
2 changed files with 11 additions and 5 deletions

View file

@ -0,0 +1,5 @@
class AddConfidentialToApplications < ActiveRecord::Migration
def change
add_column :oauth_applications, :confidential, :boolean, null: false, default: true
end
end