diff options
Diffstat (limited to 'db/migrate/20250611092227_enable_pkce.rb')
-rw-r--r-- | db/migrate/20250611092227_enable_pkce.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/db/migrate/20250611092227_enable_pkce.rb b/db/migrate/20250611092227_enable_pkce.rb new file mode 100644 index 000000000..cfc666f50 --- /dev/null +++ b/db/migrate/20250611092227_enable_pkce.rb @@ -0,0 +1,8 @@ +# frozen_string_literal: true + +class EnablePkce < ActiveRecord::Migration[7.2] + def change + add_column :oauth_access_grants, :code_challenge, :string, null: true + add_column :oauth_access_grants, :code_challenge_method, :string, null: true + end +end |