silverstripe-framework/tests/php/ORM/Search/SearchContextTest/Deadline.php

20 lines
404 B
PHP
Raw Normal View History

2016-10-14 03:30:05 +02:00
<?php
namespace SilverStripe\ORM\Tests\Search\SearchContextTest;
use SilverStripe\Dev\TestOnly;
use SilverStripe\ORM\DataObject;
class Deadline extends DataObject implements TestOnly
{
private static $table_name = 'SearchContextTest_Deadline';
2016-10-14 03:30:05 +02:00
private static $db = [
'CompletionDate' => 'Datetime'
];
2016-10-14 03:30:05 +02:00
private static $has_one = [
'Project' => Project::class,
];
2016-10-14 03:30:05 +02:00
}