CREATE TABLE "StorePrivileges"
(
"Name" VARCHAR(40) COLLATE "ANSI_CI",
"Privilege" VARCHAR(15) COLLATE "ANSI_CI",
"GrantedTo" VARCHAR(40) COLLATE "ANSI_CI",
"GrantedBy" VARCHAR(40) COLLATE "ANSI_CI"
)
CREATE INDEX "Name" ON "StorePrivileges"
("Name")
CREATE INDEX "GrantedTo" ON "StorePrivileges"
("GrantedTo")
DescriptionThis table contains the store privileges assigned to the users in an ElevateDB configuration. You can find out more about users and privileges in the User Security topic.