silverstripe-framework/tests/php/ORM/DataObjectSchemaTest/WithCustomTable.php

12 lines
228 B
PHP
Raw Permalink Normal View History

2016-10-14 03:30:05 +02:00
<?php
namespace SilverStripe\ORM\Tests\DataObjectSchemaTest;
class WithCustomTable extends NoFields
{
private static $table_name = 'DOSTWithCustomTable';
private static $db = [
'Description' => 'Text'
];
2016-10-14 03:30:05 +02:00
}