diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-07-17 22:44:38 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-07-17 22:44:38 -0400 |
commit | ee942a76967e8f7f92c0169c4f7f6a8493454ae3 (patch) | |
tree | 8606321eb17092a5e3067457befac9fd305e42e4 | |
parent | 9e8bcff5ddfc7d3e5785161078c5b1eaafea2f1e (diff) | |
parent | c6505c52965e08db5aaf8b4d5db07e00f19262dc (diff) |
Merge commit 'br3nda/0.8.x-nonce-tok' into 0.8.x
-rw-r--r-- | db/laconica_pg.sql | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/db/laconica_pg.sql b/db/laconica_pg.sql index dae8b8faf..2d8286c60 100644 --- a/db/laconica_pg.sql +++ b/db/laconica_pg.sql @@ -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 */,
|