silverstripe-framework/tests/php/Core/ClassInfoTest/WithCustomTable.php
2020-04-20 18:58:09 +01:00

12 lines
221 B
PHP

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