2 changed files with 14 additions and 0 deletions
@ -0,0 +1,7 @@
@@ -0,0 +1,7 @@
|
||||
CREATE TYPE CollectionGroupType AS TABLE ( |
||||
CollectionId uniqueidentifier NOT NULL, |
||||
GroupId uniqueidentifier NOT NULL, |
||||
ReadOnly bit NOT NULL, |
||||
HidePasswords bit NOT NULL, |
||||
Manage bit DEFAULT 0 NOT NULL |
||||
); |
||||
@ -0,0 +1,7 @@
@@ -0,0 +1,7 @@
|
||||
CREATE TYPE CollectionUserType AS TABLE ( |
||||
CollectionId uniqueidentifier NOT NULL, |
||||
OrganizationUserId uniqueidentifier NOT NULL, |
||||
ReadOnly bit NOT NULL, |
||||
HidePasswords bit NOT NULL, |
||||
Manage bit DEFAULT 0 NOT NULL |
||||
); |
||||
Loading…
Reference in new issue