-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into prod-decomp-unc
- Loading branch information
Showing
4 changed files
with
70 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
Class SourceControl.Git.DeploymentLog Extends %Persistent [ Owner = {%Developer} ] | ||
{ | ||
|
||
Property Token As %String [ InitialExpression = {$System.Util.CreateGUID()} ]; | ||
|
||
Property StartTimestamp As %TimeStamp; | ||
|
||
Property EndTimestamp As %TimeStamp; | ||
|
||
Property HeadRevision As %String; | ||
|
||
Property Status As %Status; | ||
|
||
Storage Default | ||
{ | ||
<Data name="DeploymentLogDefaultData"> | ||
<Value name="1"> | ||
<Value>%%CLASSNAME</Value> | ||
</Value> | ||
<Value name="2"> | ||
<Value>Token</Value> | ||
</Value> | ||
<Value name="3"> | ||
<Value>StartTimestamp</Value> | ||
</Value> | ||
<Value name="4"> | ||
<Value>EndTimestamp</Value> | ||
</Value> | ||
<Value name="5"> | ||
<Value>HeadRevision</Value> | ||
</Value> | ||
<Value name="6"> | ||
<Value>Status</Value> | ||
</Value> | ||
</Data> | ||
<DataLocation>^SourceContro22B9.DeploymentLogD</DataLocation> | ||
<DefaultData>DeploymentLogDefaultData</DefaultData> | ||
<IdLocation>^SourceContro22B9.DeploymentLogD</IdLocation> | ||
<IndexLocation>^SourceContro22B9.DeploymentLogI</IndexLocation> | ||
<StreamLocation>^SourceContro22B9.DeploymentLogS</StreamLocation> | ||
<Type>%Storage.Persistent</Type> | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters