silverstripe-framework/tests/php/ORM/ManyManyListTest/Product.php
2016-12-19 16:08:19 +13:00

25 lines
536 B
PHP

<?php
namespace SilverStripe\ORM\Tests\ManyManyListTest;
use SilverStripe\Dev\TestOnly;
use SilverStripe\ORM\DataObject;
class Product extends DataObject implements TestOnly
{
private static $table_name = 'ManyManyListTest_Product';
private static $db = array(
'Title' => 'Varchar'
);
private static $many_many = array(
'RelatedProducts' => Product::class
);
private static $belongs_many_many = array(
'RelatedTo' => Product::class,
'Categories' => Category::class
);
}