mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-13 12:33:25 +02:00
Decryption key is required non null field (#69)
This commit is contained in:
parent
e6d5dafce9
commit
d7d349d5c9
1 changed files with 1 additions and 1 deletions
2
init.sql
2
init.sql
|
|
@ -15,7 +15,7 @@ CREATE TABLE IF NOT EXISTS squeak (
|
|||
encContent CHAR(2272) NOT NULL, -- Encrypted content length is always 1136 bytes (2272 hex characters).
|
||||
vchScriptSig bytea NOT NULL,
|
||||
address VARCHAR(35) NOT NULL, -- Maximum length of a bitcoin address is 35.
|
||||
vchDecryptionKey bytea
|
||||
vchDecryptionKey bytea NOT NULL
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_squeak_address
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue