doorkeeper-gem/doorkeeper-openid_connect

View on GitHub
lib/generators/doorkeeper/openid_connect/templates/migration.rb.erb

Summary

Maintainability
Test Coverage
class CreateDoorkeeperOpenidConnectTables < ActiveRecord::Migration<%= migration_version %>
  def change
    create_table :oauth_openid_requests do |t|
      t.references :access_grant, null: false, index: true
      t.string :nonce, null: false
    end

    add_foreign_key(
      :oauth_openid_requests,
      :oauth_access_grants,
      column: :access_grant_id,
      on_delete: :cascade
    )
  end
end