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

@ -102,12 +102,12 @@ sub definition {
=head2 getDatabaseFieldType ( )
Returns "VARCHAR(22) BINARY".
Returns "CHAR(22) BINARY".
=cut
sub getDatabaseFieldType {
return "VARCHAR(22) BINARY";
return "CHAR(22) BINARY";
}
#-------------------------------------------------------------------

View file

@ -40,12 +40,12 @@ The following methods are specifically available from this class. Check the supe
=head2 getDatabaseFieldType ( )
Returns "VARCHAR(7)".
Returns "CHAR(7)".
=cut
sub getDatabaseFieldType {
return "VARCHAR(7)";
return "CHAR(7)";
}
#-------------------------------------------------------------------

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)";
}

View file

@ -92,12 +92,12 @@ sub definition {
=head2 getDatabaseFieldType ( )
Returns "VARCHAR(22) BINARY".
Returns "CHAR(22) BINARY".
=cut
sub getDatabaseFieldType {
return "VARCHAR(22) BINARY";
return "CHAR(22) BINARY";
}
#-------------------------------------------------------------------

View file

@ -96,12 +96,12 @@ sub definition {
=head2 getDatabaseFieldType ( )
Returns "VARCHAR(16)".
Returns "CHAR(16)".
=cut
sub getDatabaseFieldType {
return "VARCHAR(16)";
return "CHAR(16)";
}
#-------------------------------------------------------------------

View file

@ -71,12 +71,12 @@ sub definition {
=head2 getDatabaseFieldType ( )
Returns "VARCHAR(255)".
Returns "CHAR(255)".
=cut
sub getDatabaseFieldType {
return "VARCHAR(255)";
return "CHAR(255)";
}
#-------------------------------------------------------------------

View file

@ -86,12 +86,12 @@ sub definition {
=head2 getDatabaseFieldType ( )
Returns "VARCHAR(22) BINARY".
Returns "CHAR(22) BINARY".
=cut
sub getDatabaseFieldType {
return "VARCHAR(22) BINARY";
return "CHAR(22) BINARY";
}
#-------------------------------------------------------------------

View file

@ -88,12 +88,12 @@ sub definition {
=head2 getDatabaseFieldType ( )
Returns "VARCHAR(22) BINARY".
Returns "CHAR(22) BINARY".
=cut
sub getDatabaseFieldType {
return "VARCHAR(22) BINARY";
return "CHAR(22) BINARY";
}
#-------------------------------------------------------------------