ProjectDefaultReviewers
Default reviewers for a project.
Table Specific Information
Select
The driver uses the Bitbucket API to process WHERE clause conditions built with the below columns. Filtering on other columns is processed client-side within the driver.
- UserUUID supports the '=' operator.
All sorting must be processed client-side within the driver.
For example, the following query is processed server-side:
SELECT * FROM ProjectDefaultReviewers where UserUUID = '{7df2c110-13fb-4ddd-b0cb-9f425f72fafe}'
Insert
To create a new default user, you must specify the UserUUID field.A sample INSERT is included below:
INSERT INTO ProjectDefaultReviewers (UserUUID) VALUES ('{7df2c110-13fb-4ddd-b0cb-9f425f72fafe}')
Update
UPDATEs are not supported for this table.
Delete
A sample DELETE is included below:
DELETE FROM ProjectDefaultReviewers WHERE UserUUID='{7df2c110-13fb-4ddd-b0cb-9f425f72fafe}'
Columns
| Name | Type | ReadOnly | References | Description |
| UserUUID [KEY] | String | False |
The default reviewer's account uuid. | |
| UserName | String | True |
The default reviewer's account display name. |