silverstripe-frameworktest/code/Organisation.php

16 lines
295 B
PHP
Raw Permalink Normal View History

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