mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
16 lines
164 B
PHP
Executable File
16 lines
164 B
PHP
Executable File
<?php
|
|
|
|
class BlogRole extends DataObjectDecorator {
|
|
|
|
function extraDBFields() {
|
|
return array(
|
|
'db' => array(
|
|
'Hash' => 'Varchar(32)'
|
|
),
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
?>
|