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 2 Next »

TABLE [AO_68CA91_MODERATOR_MAPPING](
[ID] [int] IDENTITY(1,1) NOT NULL,
[MODERATORS] [nvarchar](255) NULL,
[PROJECT_KEY] [nvarchar](255) NULL,
[REPOSITORY_SLUG] [nvarchar](255) NULL,

 

 

 

TABLE [dbo].[AO_68CA91_UTILITY_CONFIG](
[ID] [int] IDENTITY(1,1) NOT NULL,

 

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