Sha256: 95bfd2b984d5188db41f0807ee25c57b9c965f221b8a0d3f5ff0e4a25f65e73d
Contents?: true
Size: 459 Bytes
Versions: 52
Compression:
Stored size: 459 Bytes
Contents
class CreateAuthorizationCodes < ActiveRecord::Migration[6.0] def change create_table :authorization_codes, id: :uuid do |t| t.string :token t.string :redirect_uri t.datetime :expires_at t.timestamps end add_index :authorization_codes, :token, unique: true add_reference :authorization_codes, :user, type: :uuid, index: true add_reference :authorization_codes, :oauth_client, type: :uuid, index: true end end
Version data entries
52 entries across 52 versions & 1 rubygems