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

13 lines
229 B
PHP
Raw Normal View History

2016-10-14 14:30:05 +13:00
<?php
namespace SilverStripe\Core\Tests\ClassInfoTest;
class HasFields extends NoFields
{
private static $table_name = 'ClassInfoTest_HasFields';
2016-10-14 14:30:05 +13:00
private static $db = array(
'Description' => 'Varchar'
);
2016-10-14 14:30:05 +13:00
}