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

13 lines
220 B
PHP
Raw Normal View History

2016-10-14 14:30:05 +13:00
<?php
namespace SilverStripe\ORM\Tests\SQLUpdateTest;
class TestChild extends TestBase
{
private static $table_name = 'SQLUpdateChild';
2016-10-14 14:30:05 +13:00
private static $db = array(
'Details' => 'Varchar(255)'
);
2016-10-14 14:30:05 +13:00
}