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

15 lines
318 B
PHP
Raw Normal View History

2016-10-14 14:30:05 +13:00
<?php
namespace SilverStripe\ORM\Tests\DataObjectTest;
use SilverStripe\Dev\TestOnly;
class OtherSubclassWithSameField extends Team implements TestOnly
{
private static $table_name = 'DataObjectTest_OtherSubclassWithSameField';
2016-10-14 14:30:05 +13:00
private static $db = [
'SubclassDatabaseField' => 'Varchar',
];
2016-10-14 14:30:05 +13:00
}