mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
12 lines
211 B
PHP
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'
|
||
|
);
|
||
|
}
|