postgres schema - removed not null constraint from nonce.tok, and copied the comment from the mysql schema

This commit is contained in:
Brenda Wallace 2009-07-17 23:13:30 +12:00
parent b05b998d68
commit c6505c5296
1 changed files with 2 additions and 1 deletions

View File

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