[Rt-commit] rt branch, 4.0/reinstate-coreaccessible-updates, created. rt-4.0.0rc5-4-gffbfd67
Alex Vandiver
alexmv at bestpractical.com
Wed Feb 23 16:06:49 EST 2011
The branch, 4.0/reinstate-coreaccessible-updates has been created
at ffbfd6791bc53527603186424877a64175d52757 (commit)
- Log -----------------------------------------------------------------
commit ffbfd6791bc53527603186424877a64175d52757
Author: Alex Vandiver <alexmv at bestpractical.com>
Date: Wed Feb 23 16:06:00 2011 -0500
Reinstate overlay part of e17fda9, which widens Status to 64 chars, lost in 78d4010
diff --git a/lib/RT/Ticket.pm b/lib/RT/Ticket.pm
index cfa824c..ccec951 100644
--- a/lib/RT/Ticket.pm
+++ b/lib/RT/Ticket.pm
@@ -3916,7 +3916,7 @@ Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
=head2 Status
Returns the current value of Status.
-(In the database, Status is stored as varchar(10).)
+(In the database, Status is stored as varchar(64).)
@@ -3925,7 +3925,7 @@ Returns the current value of Status.
Set Status to VALUE.
Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
-(In the database, Status will be stored as a varchar(10).)
+(In the database, Status will be stored as a varchar(64).)
=cut
@@ -4124,7 +4124,7 @@ sub _CoreAccessible {
TimeWorked =>
{read => 1, write => 1, sql_type => 4, length => 11, is_blob => 0, is_numeric => 1, type => 'int(11)', default => '0'},
Status =>
- {read => 1, write => 1, sql_type => 12, length => 10, is_blob => 0, is_numeric => 0, type => 'varchar(10)', default => ''},
+ {read => 1, write => 1, sql_type => 12, length => 64, is_blob => 0, is_numeric => 0, type => 'varchar(64)', default => ''},
TimeLeft =>
{read => 1, write => 1, sql_type => 4, length => 11, is_blob => 0, is_numeric => 1, type => 'int(11)', default => '0'},
Told =>
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list