mirror of
https://github.com/silverstripe/silverstripe-dms
synced 2024-10-22 14:05:56 +02:00
15 lines
285 B
PHP
15 lines
285 B
PHP
<?php
|
|
/**
|
|
* Hold a set of metadata category/value tags associated with a DMSDocument
|
|
*/
|
|
class DMSTag extends DataObject {
|
|
|
|
static $db = array(
|
|
'Category' => 'varchar(1024)',
|
|
'Value' => 'varchar(1024)'
|
|
);
|
|
|
|
static $belongs_many_many = array(
|
|
'Documents' => 'DMSDocument'
|
|
);
|
|
} |