mirror of
https://github.com/silverstripe/silverstripe-comments
synced 2024-10-22 09:05:49 +00:00
8 lines
191 B
PHP
8 lines
191 B
PHP
|
<?php
|
||
|
|
||
|
class CommentTwitterUsernameExtension extends DataExtension {
|
||
|
// maximum length of a twitter usnername is 15 chars
|
||
|
private static $db = array('TwitterUsername'=>'Varchar(16)');
|
||
|
|
||
|
|
||
|
}
|