Skip to content

Commit

Permalink
Add installation debugging code
Browse files Browse the repository at this point in the history
  • Loading branch information
John Doe committed Aug 11, 2020
1 parent 52d1744 commit 8fe5db4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Koha/Plugin/Com/ByWaterSolutions/CurbsidePickup.pm
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,7 @@ sub configure {
sub install() {
my ( $self, $args ) = @_;

warn "INSTALLING";
my $dbh = C4::Context->dbh;

$dbh->do(
Expand Down Expand Up @@ -353,6 +354,9 @@ CREATE TABLE `curbside_pickups` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
}
);
warn "FINISHED INSTALL!";

return 1;
}

sub upgrade {
Expand Down

0 comments on commit 8fe5db4

Please sign in to comment.