Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F118822888
HarbormasterSchemaSpec.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Jun 22, 10:39
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Jun 24, 10:39 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26925346
Attached To
rPH Phabricator
HarbormasterSchemaSpec.php
View Options
<?php
final
class
HarbormasterSchemaSpec
extends
PhabricatorConfigSchemaSpec
{
public
function
buildSchemata
()
{
$this
->
buildLiskSchemata
(
'HarbormasterDAO'
);
$this
->
buildEdgeSchemata
(
new
HarbormasterBuildable
());
$this
->
buildCounterSchema
(
new
HarbormasterBuildable
());
$this
->
buildTransactionSchema
(
new
HarbormasterBuildableTransaction
());
$this
->
buildTransactionSchema
(
new
HarbormasterBuildTransaction
());
$this
->
buildTransactionSchema
(
new
HarbormasterBuildPlanTransaction
());
$this
->
buildTransactionSchema
(
new
HarbormasterBuildStepTransaction
());
$this
->
buildRawSchema
(
id
(
new
HarbormasterBuildable
())->
getApplicationName
(),
'harbormaster_buildlogchunk'
,
array
(
'id'
=>
'id'
,
'logID'
=>
'id'
,
'encoding'
=>
'text32'
,
'size'
=>
'uint32'
,
'chunk'
=>
'bytes'
,
),
array
(
'PRIMARY'
=>
array
(
'columns'
=>
array
(
'id'
),
'unique'
=>
true
,
),
'key_log'
=>
array
(
'columns'
=>
array
(
'logID'
),
),
));
}
}
Event Timeline
Log In to Comment