Skip to content

Commit

Permalink
update createTables.sql, fix table ztc_member
Browse files Browse the repository at this point in the history
  • Loading branch information
sbilly committed Sep 5, 2021
1 parent c4ccb37 commit 4a6e6f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion schema/createTables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ CREATE TABLE ztc_member (
v_rev text,
v_proto text,
creation_time timestamp,
deleted BOOLEAN NOT NULL DEFAULT FALSE
deleted BOOLEAN NOT NULL DEFAULT FALSE,
hidden BOOLEAN NOT NULL DEFAULT FALSE
);
CREATE UNIQUE INDEX on ztc_member (network_id, id);
SELECT * FROM ztc_member;
Expand Down

0 comments on commit 4a6e6f9

Please sign in to comment.