mirror of
https://github.com/symbiote/silverstripe-gridfieldextensions.git
synced 2024-10-22 17:05:39 +02:00
19 lines
357 B
PHP
19 lines
357 B
PHP
|
<?php
|
||
|
|
||
|
namespace Symbiote\GridFieldExtensions\Tests\Stub;
|
||
|
|
||
|
class StubOrderableChild extends StubUnorderable
|
||
|
{
|
||
|
private static $db = [
|
||
|
'Sort' => 'Int',
|
||
|
];
|
||
|
|
||
|
private static $has_one = [
|
||
|
'Parent' => StubOrdered::class,
|
||
|
];
|
||
|
|
||
|
private static $default_sort = '"Sort" ASC';
|
||
|
|
||
|
private static $table_name = 'StubOrderableChild';
|
||
|
}
|