silverstripe-frameworktest/code/model/Organisation.php
2010-03-10 20:27:59 +00:00

12 lines
152 B
PHP

<?php
class Organisation extends DataObject {
// Used to test the Multiform module
static $db = array(
'OrganisationName' => 'Text'
);
}
?>