2016-10-14 14:30:05 +13:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace SilverStripe\ORM\Tests\DataQueryTest;
|
|
|
|
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
|
2016-11-13 20:35:43 +13:00
|
|
|
class ObjectE extends ObjectC implements TestOnly
|
2016-10-14 14:30:05 +13:00
|
|
|
{
|
2016-12-16 17:34:21 +13:00
|
|
|
private static $table_name = 'DataQueryTest_E';
|
2016-10-14 14:30:05 +13:00
|
|
|
|
2016-12-16 17:34:21 +13:00
|
|
|
private static $db = array(
|
|
|
|
'SortOrder' => 'Int'
|
|
|
|
);
|
2016-10-14 14:30:05 +13:00
|
|
|
|
2016-12-16 17:34:21 +13:00
|
|
|
private static $many_many = array(
|
|
|
|
'ManyTestGs' => ObjectG::class,
|
|
|
|
);
|
2016-10-14 14:30:05 +13:00
|
|
|
|
2016-12-16 17:34:21 +13:00
|
|
|
private static $default_sort = '"DataQueryTest_E"."SortOrder" ASC';
|
2016-10-14 14:30:05 +13:00
|
|
|
}
|