silverstripe-framework/tests/php/Core/ClassInfoTest/WithCustomTable.php

12 lines
221 B
PHP
Raw Normal View History

2016-10-14 03:30:05 +02:00
<?php
namespace SilverStripe\Core\Tests\ClassInfoTest;
class WithCustomTable extends NoFields
{
private static $table_name = 'CITWithCustomTable';
private static $db = [
'Description' => 'Text'
];
2016-10-14 03:30:05 +02:00
}