Skip to content

Commit

Permalink
vospace.Node.sql: explicit text array to match code usage
Browse files Browse the repository at this point in the history
  • Loading branch information
pdowler committed Mar 18, 2024
1 parent 6a62b1c commit 5f374cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cadc-inventory-db/src/main/resources/vospace.Node.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ create table <schema>.Node (
ownerID varchar(256) not null,
isPublic boolean,
isLocked boolean,
readOnlyGroups text,
readWriteGroups text,
readOnlyGroups text[],
readWriteGroups text[],

-- store all props in a 2D array
-- store misc props in a 2D array
properties text[][],

-- ContainerNode
Expand Down

0 comments on commit 5f374cc

Please sign in to comment.