1
0

20240724181224_enable_pkce.rb 257 B

12345678
  1. # frozen_string_literal: true
  2. class EnablePkce < ActiveRecord::Migration[7.1]
  3. def change
  4. add_column :oauth_access_grants, :code_challenge, :string, null: true
  5. add_column :oauth_access_grants, :code_challenge_method, :string, null: true
  6. end
  7. end