From b1d66a1a0f69b2b6960db7432500d3392a5a96a5 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Sun, 4 Dec 2011 19:32:40 -0800 Subject: [PATCH] Fix some small defects in the SQL layout. --- SQLiteDatabases.sql | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/SQLiteDatabases.sql b/SQLiteDatabases.sql index 5b50daa671..4cafa40c22 100644 --- a/SQLiteDatabases.sql +++ b/SQLiteDatabases.sql @@ -11,13 +11,14 @@ CREATE TABLE Transactions ( -- transactions in all states Fee BIGINT UNSIGNED, FirstSeen TEXT, -- time first seen CommitSeq BIGINT UNSIGNED, -- ledger commited to, 0 if none - Status CHARACTER(1) -- (N)ew, (A)ctive, (C)onflicted, (D)one, (H)eld + Status CHARACTER(1), -- (N)ew, (A)ctive, (C)onflicted, (D)one, (H)eld + Signature BLOB ); CREATE TABLE PubKeys ( -- holds pub keys for nodes and accounts ID CHARACTER(40) PRIMARY KEY, - PubKey CHARCTER(66) NOT NULL + PubKey BLOB );