silverstripe-framework/tests/php/ORM/DataObjectSchemaTest/WithCustomTable.php
2016-11-23 19:25:12 +13:00

12 lines
218 B
PHP

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