Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98049486
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
Thu, Jan 9, 02:02
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Jan 11, 02:02 (2 d)
Engine
blob
Format
Raw Data
Handle
23502717
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'
,
// T6203/NULLABILITY
// Both the type and nullability of this column are crazily wrong.
'size'
=>
'uint32?'
,
'chunk'
=>
'bytes'
,
),
array
(
'PRIMARY'
=>
array
(
'columns'
=>
array
(
'id'
),
'unique'
=>
true
,
),
'key_log'
=>
array
(
'columns'
=>
array
(
'logID'
),
),
));
}
}
Event Timeline
Log In to Comment