Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F111184264
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
Wed, Apr 30, 01:58
Size
641 B
Mime Type
text/x-php
Expires
Fri, May 2, 01:58 (2 d)
Engine
blob
Format
Raw Data
Handle
25875064
Attached To
rPH Phabricator
HarbormasterSchemaSpec.php
View Options
<?php
final
class
HarbormasterSchemaSpec
extends
PhabricatorConfigSchemaSpec
{
public
function
buildSchemata
()
{
$this
->
buildEdgeSchemata
(
new
HarbormasterBuildable
());
// NOTE: This table is not used by any Harbormaster objects, but is used
// by unit tests.
$this
->
buildRawSchema
(
id
(
new
HarbormasterObject
())->
getApplicationName
(),
PhabricatorLiskDAO
::
COUNTER_TABLE_NAME
,
array
(
'counterName'
=>
'text32'
,
'counterValue'
=>
'id64'
,
),
array
(
'PRIMARY'
=>
array
(
'columns'
=>
array
(
'counterName'
),
'unique'
=>
true
,
),
));
}
}
Event Timeline
Log In to Comment