]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
postgres schema - removed not null constraint from nonce.tok, and copied the comment...
authorBrenda Wallace <shiny@cpan.org>
Fri, 17 Jul 2009 11:13:30 +0000 (23:13 +1200)
committerBrenda Wallace <shiny@cpan.org>
Fri, 17 Jul 2009 11:17:58 +0000 (23:17 +1200)
db/laconica_pg.sql

index dae8b8fafe77b6e21e3d259e834d105a0b07e989..2d8286c60731133d16eaaada1870fab75620dfb8 100644 (file)
@@ -1,3 +1,4 @@
+\r
 /* local and remote users have profiles */\r
 \r
 create sequence profile_seq;\r
@@ -184,7 +185,7 @@ create table token (
 \r
 create table nonce (\r
     consumer_key varchar(255) not null /* comment 'unique identifier, root URL' */,\r
-    tok char(32) not null /* comment 'identifying value' */,\r
+    tok char(32) /* comment 'buggy old value, ignored' */,\r
     nonce char(32) null /* comment 'buggy old value, ignored */,\r
     ts integer not null /* comment 'timestamp sent' values are epoch, and only used internally */,\r
 \r