mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
25 lines
439 B
PHP
25 lines
439 B
PHP
|
<?php
|
||
|
|
||
|
class TrackBackPing extends DataObject {
|
||
|
static $db = array(
|
||
|
'Title' => 'Varchar',
|
||
|
'Excerpt' => 'Text',
|
||
|
// 2083 is URL-length limit for IE, AFAIK.
|
||
|
// see: http://www.boutell.com/newfaq/misc/urllength.html
|
||
|
'Url' => 'Varchar(2048)',
|
||
|
'BlogName' => 'Varchar'
|
||
|
);
|
||
|
|
||
|
static $has_one = array(
|
||
|
'Page' => 'Page'
|
||
|
);
|
||
|
|
||
|
static $has_many = array();
|
||
|
|
||
|
static $many_many = array();
|
||
|
|
||
|
static $belongs_many_many = array();
|
||
|
}
|
||
|
|
||
|
?>
|