Sha256: 515a75628db05f25652a4e0aefcf1bdfbc1e72edeb18cc360103d26b6a325269
Contents?: true
Size: 408 Bytes
Versions: 14
Compression:
Stored size: 408 Bytes
Contents
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
Version data entries
14 entries across 14 versions & 1 rubygems