Browse Source

Added missing drop table lines (labels_batches & labels_layouts)

3.2.x
Piotr Wejman 15 years ago
committed by Henri-Damien LAURENT
parent
commit
c5ddaf5d5f
  1. 2
      installer/data/mysql/labels_upgrade.pl

2
installer/data/mysql/labels_upgrade.pl

@ -161,7 +161,9 @@ while (my $template = $sth3->fetchrow_hashref()) {
# Drop old tables....
$sth->do("DROP TABLE IF EXISTS labels;") or die "DB ERROR: " . $sth->errstr . "\n";
$sth->do("DROP TABLE IF EXISTS labels_batches;") or die "DB ERROR: " . $sth->errstr . "\n";
$sth->do("DROP TABLE IF EXISTS labels_conf;") or die "DB ERROR: " . $sth->errstr . "\n";
$sth->do("DROP TABLE IF EXISTS labels_layouts;") or die "DB ERROR: " . $sth->errstr . "\n";
$sth->do("DROP TABLE IF EXISTS labels_profile;") or die "DB ERROR: " . $sth->errstr . "\n";
$sth->do("DROP TABLE IF EXISTS labels_templates;") or die "DB ERROR: " . $sth->errstr . "\n";
$sth->do("DROP TABLE IF EXISTS printers_profile;") or die "DB ERROR: " . $sth->errstr . "\n";

Loading…
Cancel
Save