1
0
mirror of https://github.com/silverstripe/silverstripe-framework synced 2024-10-22 12:05:37 +00:00
2020-10-29 09:29:26 +13:00

14 lines
290 B
PHP

<?php
namespace SilverStripe\ORM\Tests\RelatedDataServiceTest;
class ThroughObject extends Node
{
private static $table_name = 'TestOnly_RelatedDataServiceTest_ThroughObject';
private static $has_one = [
'HubObj' => Hub::class,
'NodeObj' => Node::class,
];
}