]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/oauth_nonce.rb
Merge pull request #1938 from jguthrie100/fix_no_trace_description_error
[rails.git] / app / models / oauth_nonce.rb
index e0510dcbf85bb59a237b33fca0c8aa6a9008ece2..0952f068edc6b9a9d2525206e1fd5069c8ff7516 100644 (file)
@@ -1,3 +1,18 @@
+# == Schema Information
+#
+# Table name: oauth_nonces
+#
+#  id         :integer          not null, primary key
+#  nonce      :string
+#  timestamp  :integer
+#  created_at :datetime
+#  updated_at :datetime
+#
+# Indexes
+#
+#  index_oauth_nonces_on_nonce_and_timestamp  (nonce,timestamp) UNIQUE
+#
+
 # 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