]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/oauth_nonce.rb
Merge remote-tracking branch 'upstream/pull/3177'
[rails.git] / app / models / oauth_nonce.rb
index 9d2773e8f346c5b8e6789c8a314020c7a39edd41..86463f297226e11dce96bcc55af1ffd31e92342e 100644 (file)
@@ -2,7 +2,7 @@
 #
 # Table name: oauth_nonces
 #
-#  id         :integer          not null, primary key
+#  id         :bigint           not null, primary key
 #  nonce      :string
 #  timestamp  :integer
 #  created_at :datetime
@@ -15,7 +15,7 @@
 
 # Simple store of nonces. The OAuth Spec requires that any given pair of nonce and timestamps are unique.
 # Thus you can use the same nonce with a different timestamp and viceversa.
-class OauthNonce < ActiveRecord::Base
+class OauthNonce < ApplicationRecord
   validates :timestamp, :presence => true
   validates :nonce, :presence => true, :uniqueness => { :scope => :timestamp }