diff options
author | Rob Austein <sra@hactrn.net> | 2014-08-06 22:52:28 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2014-08-06 22:52:28 +0000 |
commit | 8032686109d62e4dbd8bb2955fbaa7b2bbdcebbb (patch) | |
tree | 7e2dfe60edb159d887bfdbde62ff52ca2bdd1394 /schemas | |
parent | cd8becc8460679775f3e7a5ef61046a17bcab3f2 (diff) |
Sort out BPKI mess with rootd talking to pubd. Underlying problem is
that smoketest.py uses an obsolete BPKI model which requires different
configuration than modern code. Real fix is several different major
refactoring jobs (merging rootd into rpkid, merging all three
YAML-based test tools...). As usual, not today.
svn path=/branches/tk705/; revision=5914
Diffstat (limited to 'schemas')
-rw-r--r-- | schemas/sql/pubd.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/schemas/sql/pubd.sql b/schemas/sql/pubd.sql index de857bf4..2a0e2851 100644 --- a/schemas/sql/pubd.sql +++ b/schemas/sql/pubd.sql @@ -47,7 +47,7 @@ CREATE TABLE session ( session_id SERIAL NOT NULL, uuid VARCHAR(36) NOT NULL, serial BIGINT UNSIGNED NOT NULL, - snapshot TEXT, + snapshot LONGTEXT, hash CHAR(64), PRIMARY KEY (session_id), UNIQUE (uuid) @@ -56,7 +56,7 @@ CREATE TABLE session ( CREATE TABLE delta ( delta_id SERIAL NOT NULL, serial BIGINT UNSIGNED NOT NULL, - xml TEXT NOT NULL, + xml LONGTEXT NOT NULL, hash CHAR(64) NOT NULL, expires DATETIME NOT NULL, session_id BIGINT UNSIGNED NOT NULL, |