You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

6 lines
535 B

-- Older releases ignore both columns after a downgrade: a My Items collection becomes a regular one there, which
-- Owners, Admins and members with access to all collections see with its items.
ALTER TABLE collections ADD COLUMN default_user_uuid CHAR(36);
ALTER TABLE collections ADD COLUMN default_user_collection_email TEXT;
-- A member has at most one My Items collection per organization. NULL (a shared collection) never conflicts.
CREATE UNIQUE INDEX collections_default_user_uuid ON collections (org_uuid, default_user_uuid);