silverstripe-framework/tests/php/Core/ClassInfoTest/WithCustomTable.php
2016-11-23 19:25:12 +13:00

12 lines
211 B
PHP

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