silverstripe-framework/tests/php/ORM/DataObjectSchemaTest/WithCustomTable.php
2016-12-19 16:08:19 +13:00

12 lines
233 B
PHP

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