silverstripe-frameworktest/code/Organisation.php

16 lines
295 B
PHP
Raw Normal View History

2010-03-10 20:27:59 +00:00
<?php
namespace SilverStripe\FrameworkTest\Model;
use SilverStripe\ORM\DataObject;
2015-12-18 09:20:49 +13:00
class Organisation extends DataObject
{
private static $table_name = 'Organisation';
2015-12-18 09:20:49 +13:00
// Used to test the Multiform module
private static $db = array(
'OrganisationName' => 'Text'
);
2010-03-10 20:27:59 +00:00
}