'Varchar(255)', 'URLSegment' => 'Varchar(255)' ); /** * @var array */ private static $has_one = array( 'Blog' => 'SilverStripe\\Blog\\Model\\Blog' ); /** * @var array */ private static $belongs_many_many = array( 'BlogPosts' => 'SilverStripe\\Blog\\Model\\BlogPost' ); /** * {@inheritdoc} */ protected function getListUrlSegment() { return 'tags'; } /** * {@inheritdoc} */ protected function getDuplicateError() { return _t('BlogTag.Duplicate', 'A blog tag already exists with that name.'); } }