Jigit - Data Stored
Here is the description of the data stored by Jira GitLab and GitHub integration.
What data is stored?
The app only stores the data it needs to display on the Issue View tab which currently shows the commit details and light diff information. The Jigit App does not access the source code.
Table structures
Commit table
Column name | Column type | Description |
---|---|---|
|
| The commit reference hash. Primary Key. |
|
| The title of the commit (usually the message). |
|
| The author of the commit in the Git system (GitHub/GitLab). |
|
| The date the commit was created. |
|
| The optional parent grouping of the commit (group/project). |
|
| The name of the repository the commit belongs to. |
|
| The name of the branch the commit was made. |
|
| Is this the first commit? |
Issue commit table
Column name | Column type | Description |
---|---|---|
|
| The issue key. Primary Key. |
|
| The reference to the commit table. |
Commit diff table
Column name | Column type | Description |
---|---|---|
|
| The reference to the commit table. Primary Key. |
|
| The old path to the file. |
|
| The new path to the file. |
|
| One of the following actions.
CODE
|
Queue item table
This table is used by the indexer as a processing queue.
Column name | Column type | Description |
---|---|---|
|
| The commit hash to process. Primary Key. |
|
| The name of the repository commit belongs to. |
|
| The name of the branch commit belongs to. |
Updated: