X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/e222329d043592af299eed12cf6ad16969c1b46f..9fc2a5c4e9c2d0bc7df5493b5b74345992aa9dfa:/db/migrate/20201004105659_create_doorkeeper_tables.rb diff --git a/db/migrate/20201004105659_create_doorkeeper_tables.rb b/db/migrate/20201004105659_create_doorkeeper_tables.rb index 66456bc2c..d9a643554 100644 --- a/db/migrate/20201004105659_create_doorkeeper_tables.rb +++ b/db/migrate/20201004105659_create_doorkeeper_tables.rb @@ -18,7 +18,7 @@ class CreateDoorkeeperTables < ActiveRecord::Migration[6.0] create_table :oauth_access_grants do |t| t.references :resource_owner, :null => false, :type => :bigint - t.references :application, :null => false + t.references :application, :null => false, :type => :bigint t.string :token, :null => false t.integer :expires_in, :null => false t.text :redirect_uri, :null => false @@ -35,7 +35,7 @@ class CreateDoorkeeperTables < ActiveRecord::Migration[6.0] create_table :oauth_access_tokens do |t| t.references :resource_owner, :index => true, :type => :bigint - t.references :application, :null => false + t.references :application, :null => false, :type => :bigint t.string :token, :null => false t.string :refresh_token t.integer :expires_in