silverstripe-framework/tests/php/Core/ClassInfoTest/WithCustomTable.php
2016-12-19 16:08:19 +13:00

12 lines
226 B
PHP

<?php
namespace SilverStripe\Core\Tests\ClassInfoTest;
class WithCustomTable extends NoFields
{
private static $table_name = 'CITWithCustomTable';
private static $db = array(
'Description' => 'Text'
);
}