13 lines
250 B
PHP
Raw Normal View History

2016-10-14 14:30:05 +13:00
<?php
namespace SilverStripe\ORM\Tests\DataObjectTest;
class ExtendedTeamComment extends TeamComment
{
private static $table_name = 'DataObjectTest_ExtendedTeamComment';
2016-10-14 14:30:05 +13:00
private static $db = array(
'Comment' => 'HTMLText'
);
2016-10-14 14:30:05 +13:00
}