Show
Ignore:
Timestamp:
06/02/06 19:40:31 (6 years ago)
Author:
dom
Message:

Check that we can do all we need to when upgrading MySQL database (closes #8)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • wiki-toolkit/trunk/lib/Wiki/Toolkit/Setup/MySQL.pm

    r235 r319  
    130130                if($@) { warn $@; } 
    131131 
     132        # Check to make sure we can create, index and drop tables 
     133        # before doing any more 
     134        my $perm_check = Wiki::Toolkit::Setup::Database::perm_check($dbh); 
     135        if ($perm_check) { 
     136            die $perm_check; 
     137        } 
     138         
    132139                # Drop the current tables 
    133140                cleardb($dbh);