mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +01:00
2fad8ce677
Summary: Closes T7945, phabricator_calendar db should now have Edge tables. Test Plan: Use phabricator_calendar db in mysql, show create table edge, verify edge tables are present. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T7945 Differential Revision: https://secure.phabricator.com/D12584
10 lines
195 B
PHP
10 lines
195 B
PHP
<?php
|
|
|
|
final class PhabricatorCalendarSchemaSpec
|
|
extends PhabricatorConfigSchemaSpec {
|
|
|
|
public function buildSchemata() {
|
|
$this->buildEdgeSchemata(new PhabricatorCalendarEvent());
|
|
}
|
|
|
|
}
|