Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

 

The following is a description of the database tables created during the installation of Herzum Approval add-on into your JIRA instance.

 

 

Database Diagram


Tables Details

TABLE AO_68CA91_MODERATOR_MAPPING

The Table holds the Moderators per Project/Repository
ColumnTypeDescription 
[ID][int] NOT NULLThe Unique Moderator Mapping Identifier (Primary Key)
[MODERATORS] [nvarchar](255) NULLIt maintains the usernames of the Moderators separated by comma.
[PROJECT_KEY] [nvarchar](255) NULLThe Project Key
[REPOSITORY_SLUG] [nvarchar](255) NULLThe Repository Slug

 

 

TABLE AO_68CA91_UTILITY_CONFIG

 
ColumnTypeDescription 
[ID][int] NOT NULLThe Utility Config Identifier (Primary Key)



 

TABLE [dbo].[sta_activity](
[id] [bigint] NOT NULL,
[activity_type] [int] NOT NULL,
[created_timestamp] [datetime] NOT NULL,
[user_id] [int] NOT NULL,

 

 

TABLE [dbo].[sta_pr_activity](
[activity_id] [bigint] NOT NULL,
[pr_id] [bigint] NOT NULL,
[pr_action] [int] NOT NULL,

 

E.g pr_action=7 APPROVE

 

TABLE [dbo].[repository](
[id] [int] NOT NULL,
[slug] [nvarchar](128) NOT NULL,
[name] [nvarchar](128) NOT NULL,
[state] [int] NOT NULL,
[project_id] [int] NOT NULL,
[scm_id] [nvarchar](255) NOT NULL,
[hierarchy_id] [nvarchar](20) NOT NULL,
[is_forkable] [bit] NOT NULL,
[is_public] [bit] NOT NULL,

 

TABLE [dbo].[project](
[id] [int] NOT NULL,
[name] [nvarchar](128) NOT NULL,
[project_key] [nvarchar](128) NOT NULL,
[description] [nvarchar](255) NULL,
[project_type] [int] NOT NULL,
[namespace] [nvarchar](128) NOT NULL,

 

 

  • No labels