silverstripe-frameworktest/code/Organisation.php

12 lines
152 B
PHP

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