mirror of
https://github.com/silverstripe/silverstripe-fulltextsearch
synced 2024-10-22 14:05:29 +02:00
16 lines
436 B
PHP
16 lines
436 B
PHP
<?php
|
|
|
|
namespace SilverStripe\FullTextSearch\Tests\SearchVariantSiteTreeSubsitesPolyhomeTest;
|
|
|
|
use SilverStripe\CMS\Model\SiteTree;
|
|
|
|
class SearchVariantSiteTreeSubsitesPolyhomeTest_Item extends SiteTree
|
|
{
|
|
private static $table_name = 'SearchVariantSiteTreeSubsitesPolyhomeTest_Item';
|
|
|
|
// TODO: Currently theres a failure if you addClass a non-table class
|
|
private static $db = array(
|
|
'TestText' => 'Varchar'
|
|
);
|
|
}
|