mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-14 12:43:24 +02:00
Add profile whitelist (#160)
* Add whitelisted field to profile table * Fix adding whitelisted field to profile, itest passes now
This commit is contained in:
parent
b207469046
commit
06e642b19c
6 changed files with 13 additions and 4 deletions
3
init.sql
3
init.sql
|
|
@ -29,5 +29,6 @@ CREATE TABLE IF NOT EXISTS profile (
|
|||
private_key bytea,
|
||||
address VARCHAR(35) UNIQUE NOT NULL, -- Maximum length of a bitcoin address is 35.
|
||||
sharing BOOLEAN NOT NULL,
|
||||
following BOOLEAN NOT NULL
|
||||
following BOOLEAN NOT NULL,
|
||||
whitelisted BOOLEAN NOT NULL
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue