mirror of
https://github.com/silverstripe/silverstripe-comments
synced 2024-10-22 11:05:49 +02: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)');
|
|
|
|
|
|
} |