This is an automated email from the ASF dual-hosted git repository. gstein pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/steve.git
commit ec8a0340a26576f94f12a6c14094773d688aed88 Author: Greg Stein <[email protected]> AuthorDate: Mon May 30 19:22:42 2022 -0500 Fernet output is bytes. fix schema. --- v3/schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v3/schema.sql b/v3/schema.sql index a77a152..dc3cef7 100644 --- a/v3/schema.sql +++ b/v3/schema.sql @@ -142,7 +142,7 @@ CREATE TABLE VOTES ( salt BLOB NOT NULL, /* An encrypted form of the vote. */ - token TEXT NOT NULL + token BLOB NOT NULL ) STRICT;
