fixed: DataForm entry data field is too small

This commit is contained in:
Graham Knop 2008-11-24 04:03:22 +00:00
parent a8614275eb
commit 2c397a907c
2 changed files with 9 additions and 0 deletions

View file

@ -56,6 +56,7 @@
- fixed #8956: Not checking for populated variable
- fixed #9130: fixed: Rich editor creates root <p> tag even when set to use <br />
- fixed: DataForm times out when exporting large data sets
- fixed: DataForm entry data field is too small
7.6.3
- improved performance of file uploads

View file

@ -42,9 +42,17 @@ addExtendedProfilePrivileges( $session );
addStorageUrlMacro( $session );
addRecurringSubscriptionSwitch( $session );
upgradeMatrix( $session );
increaseDataFormSizeLimits( $session );
finish($session); # this line required
#----------------------------------------------------------------------------
sub increaseDataFormSizeLimits {
my $session = shift;
print "\ttIncreasing size of DataForm entry data field... " unless $quiet;
$session->db->write("ALTER TABLE DataForm_entry MODIFY COLUMN entryData mediumtext");
print "Done.\n" unless $quiet;
}
sub upgradeMatrix {
my $session = shift;
print "\tUpgrading matrix assets... \n" unless $quiet;