MINOR: moving EA specific code out of the dms module into the project's my site

This commit is contained in:
Julian Seidenberg 2012-07-26 10:20:25 +12:00
parent 7a4444fd80
commit 8e03989022
2 changed files with 0 additions and 21 deletions

View File

@ -1,11 +0,0 @@
<?php
class DocumentType extends DataObject {
static $db = array(
'Name' => 'Varchar(255)'
);
static $has_many = array(
'Documents' => 'EADocument'
);
}

View File

@ -1,10 +0,0 @@
<?php
class EADocument extends DMSDocument {
static $has_one = array(
'DocumentType' => 'DocumentType',
'ContentType' => 'ContentType'
);
}