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

12 lines
228 B
PHP

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