Summary: Ref T1191. This fills in some more features and gets audit and auth nearly generating reasonable expected schemata. Test Plan: See screenshots. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T1191 Differential Revision: https://secure.phabricator.com/D10500
12 lines
253 B
PHP
12 lines
253 B
PHP
<?php
|
|
|
|
final class PhabricatorAuditSchemaSpec extends PhabricatorConfigSchemaSpec {
|
|
|
|
public function buildSchemata() {
|
|
$this->buildTransactionSchema(
|
|
new PhabricatorAuditTransaction(),
|
|
new PhabricatorAuditTransactionComment());
|
|
}
|
|
|
|
}
|