Summary: Ref T1191. Nothing notable in these. Test Plan: Viewed web UI. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T1191 Differential Revision: https://secure.phabricator.com/D10528
17 lines
364 B
PHP
17 lines
364 B
PHP
<?php
|
|
|
|
final class PhabricatorPasteSchemaSpec
|
|
extends PhabricatorConfigSchemaSpec {
|
|
|
|
public function buildSchemata() {
|
|
$this->buildLiskSchemata('PhabricatorPasteDAO');
|
|
|
|
$this->buildTransactionSchema(
|
|
new PhabricatorPasteTransaction(),
|
|
new PhabricatorPasteTransactionComment());
|
|
|
|
$this->buildEdgeSchemata(new PhabricatorPaste());
|
|
}
|
|
|
|
}
|