mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 18:32:41 +01:00
1d7cbe202f
Summary: Ref T2217. Cleans up the table names. Moves old data to `maniphest_transaction_legacy`. We'll drop that eventually once it's more clear that I didn't break the world. Test Plan: Did reads/writes to/from these tables. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T2217 Differential Revision: https://secure.phabricator.com/D7094
10 lines
201 B
PHP
10 lines
201 B
PHP
<?php
|
|
|
|
final class ManiphestTransactionComment
|
|
extends PhabricatorApplicationTransactionComment {
|
|
|
|
public function getApplicationTransactionObject() {
|
|
return new ManiphestTransaction();
|
|
}
|
|
|
|
}
|