X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/8d76be71bbb8a799cbf0627dee170f26ade5a11f..6f0477ee72cb9f2c780342413bd6314eacb22d22:/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