Jump to: navigation, search

Difference between revisions of "StoryBoard/ObjectModel"

m (Entities List)
(Entities Details)
Line 39: Line 39:
 
|-
 
|-
 
| title || string || A detailed description for the Project.
 
| title || string || A detailed description for the Project.
 +
|}
 +
 +
=== Branch ===
 +
 +
A Branch object represents a single development branch.
 +
 +
{| class="wikitable"
 +
|-
 +
! Field Name !! Type !! Description
 +
|-
 +
| id || integer || A primary key for a database.
 +
|-
 +
| name || string || Full Branch name.
 +
|-
 +
| short_name || string || Short Branch name.
 +
|-
 +
| status || char || Release status of a Branch. This may be M - master, R - release, S - stable, U - unsupported.
 
|}
 
|}

Revision as of 14:00, 21 November 2013

Storyboard Object Model

Entities List

  • Project Group
  • Project
  • Branch
  • Milestone

Entities Details

Project Group

A Project Group object represents a list of projects which are closely dependent on each other.

Field Name Type Description
id integer A primary key for a database.
name string Project Group short name. One word names are preferred.
title string A detailed description for the entire Project Group.
members list(Project) A list of Projects that belong to this Project Group.

Project

A Project object represents a single project.

Field Name Type Description
id integer A primary key for a database.
name string A Project short name. One word names are preferred.
title string A detailed description for the Project.

Branch

A Branch object represents a single development branch.

Field Name Type Description
id integer A primary key for a database.
name string Full Branch name.
short_name string Short Branch name.
status char Release status of a Branch. This may be M - master, R - release, S - stable, U - unsupported.