about summary refs log tree commit diff
path: root/db/migrate/20160306172223_create_doorkeeper_tables.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20160306172223_create_doorkeeper_tables.rb')
-rw-r--r--db/migrate/20160306172223_create_doorkeeper_tables.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20160306172223_create_doorkeeper_tables.rb b/db/migrate/20160306172223_create_doorkeeper_tables.rb
index e9da5f342..d89b005c3 100644
--- a/db/migrate/20160306172223_create_doorkeeper_tables.rb
+++ b/db/migrate/20160306172223_create_doorkeeper_tables.rb
@@ -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