Page MenuHomestyx hydra

PhabricatorStorageSchemaSpec.php
No OneTemporary

PhabricatorStorageSchemaSpec.php

<?php
final class PhabricatorStorageSchemaSpec
extends PhabricatorConfigSchemaSpec {
public function buildSchemata() {
$this->buildRawSchema(
'meta_data',
'patch_status',
array(
'patch' => 'text128',
'applied' => 'uint32',
'duration' => 'uint64?',
),
array(
'PRIMARY' => array(
'columns' => array('patch'),
'unique' => true,
),
));
$this->buildRawSchema(
'meta_data',
PhabricatorStorageManagementAPI::TABLE_HOSTSTATE,
array(
'stateKey' => 'text128',
'stateValue' => 'text',
),
array(
'PRIMARY' => array(
'columns' => array('stateKey'),
'unique' => true,
),
));
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Apr 28, 6:02 PM (1 h, 20 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1322052
Default Alt Text
PhabricatorStorageSchemaSpec.php (767 B)

Event Timeline