Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93116875
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
Tue, Nov 26, 08:14
Size
779 B
Mime Type
text/x-php
Expires
Thu, Nov 28, 08:14 (2 d)
Engine
blob
Format
Raw Data
Handle
22578408
Attached To
rPH Phabricator
HarbormasterSchemaSpec.php
View Options
<?php
final
class
HarbormasterSchemaSpec
extends
PhabricatorConfigSchemaSpec
{
public
function
buildSchemata
()
{
$this
->
buildEdgeSchemata
(
new
HarbormasterBuildable
());
$this
->
buildRawSchema
(
id
(
new
HarbormasterBuildable
())->
getApplicationName
(),
'harbormaster_buildlogchunk'
,
array
(
'id'
=>
'auto'
,
'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