13 lines
242 B
PHP
Raw Normal View History

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