use char instead of varchar

This commit is contained in:
Graham Knop 2009-02-18 03:18:20 +00:00
parent c90fa56507
commit e5ede77c29
17 changed files with 31 additions and 31 deletions

View file

@ -358,12 +358,12 @@ sub get {
=head2 getDatabaseFieldType ( )
A class method that tells you what database field type this form field should be stored in. Defaults to "VARCHAR(255)".
A class method that tells you what database field type this form field should be stored in. Defaults to "CHAR(255)".
=cut
sub getDatabaseFieldType {
return "VARCHAR(255)";
return "CHAR(255)";
}