silverstripe-gridfieldexten.../tests/Stub/StubUnorderable.php

16 lines
306 B
PHP
Raw Normal View History

2018-02-21 12:58:48 +01:00
<?php
namespace Symbiote\GridFieldExtensions\Tests\Stub;
use SilverStripe\Dev\TestOnly;
use SilverStripe\ORM\DataObject;
class StubUnorderable extends DataObject implements TestOnly
{
private static $db = [
'Title' => 'Varchar',
];
private static $table_name = 'StubUnorderable';
}