0
0
Fork 0

Customizing doorkeeper views for authorizing app

This commit is contained in:
Eugen Rochko 2016-03-11 01:58:55 +01:00
parent d4b9b289e8
commit b919f39b31
12 changed files with 78 additions and 64 deletions

View file

@ -12,7 +12,7 @@ class CreateDoorkeeperTables < ActiveRecord::Migration
add_index :oauth_applications, :uid, unique: true
create_table :oauth_access_grants do |t|
t.integer :user_id, null: false
t.integer :resource_owner_id, null: false
t.integer :application_id, null: false
t.string :token, null: false
t.integer :expires_in, null: false