Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkwilk2012-03-21 00:26:41 +0000
committerRoberto E. Escobar2012-03-21 00:26:41 +0000
commitb1a83b38b898c25bd990eb37e08a46298fa627b6 (patch)
tree25cad310dc1658f02cc830ba7e4f01b3fe9d180e
parenta4bca34358dcada89d786f5b7736aad92f4c96e0 (diff)
downloadorg.eclipse.osee-b1a83b38b898c25bd990eb37e08a46298fa627b6.tar.gz
org.eclipse.osee-b1a83b38b898c25bd990eb37e08a46298fa627b6.tar.xz
org.eclipse.osee-b1a83b38b898c25bd990eb37e08a46298fa627b6.zip
refinement: Added more information to schema descriptions
-rw-r--r--plugins/org.eclipse.osee.orcs.db/schema/SKYNET.VERSIONING.SCHEMA.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.orcs.db/schema/SKYNET.VERSIONING.SCHEMA.xml b/plugins/org.eclipse.osee.orcs.db/schema/SKYNET.VERSIONING.SCHEMA.xml
index 0c39834d368..98324b59ace 100644
--- a/plugins/org.eclipse.osee.orcs.db/schema/SKYNET.VERSIONING.SCHEMA.xml
+++ b/plugins/org.eclipse.osee.orcs.db/schema/SKYNET.VERSIONING.SCHEMA.xml
@@ -167,10 +167,10 @@
<Column id="PARENT_BRANCH_ID" description="self-explanatory" />
<Column id="PARENT_TRANSACTION_ID" description="self-explanatory" />
<Column id="ARCHIVED" description="Indicates whether transaction information (tx) related to this branch have been kept in the main OSEE_TXS transaction table or moved to the OSEE_TXS_ARCHIVED. " />
- <Column id="BRANCH_STATE" description="????" />
- <Column id="ASSOCIATED_ART_ID" description="-1 Unknown, 0 Created, 1 Modified, 2 Committed, 3 Rebaselined as referenced in enum BranchState.java" />
+ <Column id="BRANCH_STATE" description="-1 Unknown, 0 Created, 1 Modified, 2 Committed, 3 Rebaselined as referenced in enum BranchState.java" />
+ <Column id="ASSOCIATED_ART_ID" description="id reference to artifact, for example team workflow artifact owning the branch" />
<Column id="BRANCH_TYPE" description="0 Working, 2 Baseline, 3 Merge, 4 System Root as referenced in BranchType.java" />
- <Column id="BASELINE_TRANSACTION_ID" description="??? what did this mean" />
+ <Column id="BASELINE_TRANSACTION_ID" description="id of transaction (as referenced in osee_tx_details) that created this branch" />
</TableDescription>
<Table name="OSEE_TXS" schema="OSEE" tablespace="osee_data">

Back to the top