]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
PostgreSQL - the ts field in the OAuth nonce table needed to be an integer. (fix...
authorCiaranG <ciaran@ciarang.com>
Thu, 5 Mar 2009 16:15:29 +0000 (16:15 +0000)
committerCiaranG <ciaran@ciarang.com>
Thu, 5 Mar 2009 16:15:29 +0000 (16:15 +0000)
db/laconica_pg.sql

index 4ef2330f408b6a26f0da891d87095017ff87f0b3..2d83f784a293dd388af61b0f24e7fc3b92f28b25 100644 (file)
@@ -181,7 +181,7 @@ create table nonce (
     consumer_key varchar(255) not null /* comment 'unique identifier, root URL' */,\r
     tok char(32) not null /* comment 'identifying value' */,\r
     nonce char(32) not null /* comment 'nonce' */,\r
-    ts timestamp not null /* comment 'timestamp sent' */,\r
+    ts integer not null /* comment 'timestamp sent' values are epoch, and only used internally */,\r
 \r
     created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,\r
     modified timestamp /* comment 'date this record was modified' */,\r