Skip to content

Commit

Permalink
add disabled flag for visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
codeho committed Aug 8, 2023
1 parent 73b02bd commit c5d86e7
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@ BEGIN
"disabledCirclesAddress" = "circlesAddress"
WHERE
"circlesAddress" = address;
-- Remove circlesAddress
-- Set disabled status
UPDATE
"Profile"
SET
"status" = 'disabled'
WHERE
"circlesAddress" = address;
-- Remove CirclesAddress
UPDATE
"Profile"
SET
Expand Down

0 comments on commit c5d86e7

Please sign in to comment.