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

13 lines
252 B
PHP
Raw Permalink Normal View History

2016-10-14 03:30:05 +02:00
<?php
namespace SilverStripe\ORM\Tests\DataObjectSchemaTest;
class WithRelation extends NoFields
{
private static $table_name = 'DataObjectSchemaTest_WithRelation';
2016-10-14 03:30:05 +02:00
private static $has_one = [
'Relation' => HasFields::Class
];
2016-10-14 03:30:05 +02:00
}