silverstripe-framework/tests/php/ORM/DataObjectSchemaTest/WithCustomTable.php

12 lines
233 B
PHP
Raw Normal View History

2016-10-14 03:30:05 +02:00
<?php
namespace SilverStripe\ORM\Tests\DataObjectSchemaTest;
class WithCustomTable extends NoFields
{
private static $table_name = 'DOSTWithCustomTable';
private static $db = array(
'Description' => 'Text'
);
2016-10-14 03:30:05 +02:00
}