Startrekzky commented on code in PR #450:
URL: 
https://github.com/apache/incubator-devlake-website/pull/450#discussion_r1119722815


##########
docs/DataModels/DevLakeDomainLayerSchema.md:
##########
@@ -496,30 +496,110 @@ A cicd_task is a single job of ci/cd.
 | `finished_date` | datetime        | 3          | when did this task finish   
                                    |         |
 | `environment`   | varchar         | 255        | To indicate the environment 
in which the task is running        |         |
 
+### Domain 5 - Code Quality
+
+#### cq_projects
+
+| **field**            | **type** | **length** | **description**               
                                                      | **key** |
+| :------------------- | :------- | :--------- | 
:----------------------------------------------------------------------------------
 | :------ |
+| `id`                 | varchar  | 255        | This key is generated based 
on details from the original plugin                     | PK      |
+| `name`               | varchar  | 255        | The name of the project in 
SonarQube                                                |         |
+| `qualifier`          | varchar  | 255        | The type of project. Examples 
include "TRK" for regular projects and "VW" for views |         |
+| `visibility`         | varchar  | 64         | The visibility of the 
project. Examples include "public" and "private"              |         |
+| `last_analysis_date` | datatime | 3          | The date and time of the most 
recent analysis of the project                        |         |
+| `commit_sha`         | varchar  | 128        | The SHA1 hash of the latest 
commit associated with the project                      |         |
+
+#### cq_issues
+
+| **field**                   | **type** | **length** | **description**        
                                                 | **key** |
+| :-------------------------- | :------- | :--------- | 
:---------------------------------------------------------------------- | 
:------ |
+| `id`                        | varchar  | 255        | This key is generated 
based on details from the original plugin         | PK      |
+| `rule`                      | varchar  | 255        | The key of the rule 
that the issue is violating                         |         |
+| `severity`                  | varchar  | 255        | The severity level of 
the issue                                         |         |
+| `component`                 | varchar  | 255        | The name of the 
component where the issue was found                     |         |
+| `project_key`               | varchar  | 255        | The key of the project 
that the issue belongs to                        |         |
+| `line`                      | bigint   |            | The line number where 
the issue was found                               |         |
+| `status`                    | varchar  | 255        | The status of the 
issue                                                 |         |
+| `message`                   | longtext |            | The message associated 
with the issue                                   |         |
+| `debt`                      | bigint   |            | The estimated time 
required to fix the issue                            |         |
+| `effort`                    | bigint   |            | The effort required to 
fix the issue                                    |         |
+| `commit_author_email`       | varchar  | 255        | The email address of 
the author of the commit that introduced the issue |         |
+| `assigne`                   | varchar  | 255        | The person assigned to 
fix the issue                                    |         |

Review Comment:
   typo: assignee



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to