silverstripe-frameworktest/code/model/Organisation.php

12 lines
152 B
PHP
Raw Normal View History

2010-03-10 21:27:59 +01:00
<?php
class Organisation extends DataObject {
// Used to test the Multiform module
static $db = array(
'OrganisationName' => 'Text'
);
}
?>