@@ -, +, @@ --- installer/data/mysql/atomicupdate/bug_33105.pl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) --- a/installer/data/mysql/atomicupdate/bug_33105.pl +++ a/installer/data/mysql/atomicupdate/bug_33105.pl @@ -2,17 +2,16 @@ use Modern::Perl; return { bug_number => "33105", - description => "A vendor issues", + description => "Add vendor issues", up => sub { my ($args) = @_; my ($dbh, $out) = @$args{qw(dbh out)}; - # Do you stuffs here unless (TableExists('aqbookseller_issues')) { $dbh->do(q{ CREATE TABLE `aqbookseller_issues` ( `issue_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'primary key and unique identifier assigned by Koha', `vendor_id` int(11) NOT NULL COMMENT 'link to the vendor', - `type` varchar(80) DEFAULT NULL COMMENT "type of the issue, authorised value VENDOR_ISSUE_TYPE", + `type` varchar(80) DEFAULT NULL COMMENT 'type of the issue, authorised value VENDOR_ISSUE_TYPE', `started_on` date DEFAULT NULL COMMENT 'start of the issue', `ended_on` date DEFAULT NULL COMMENT 'end of the issue', `notes` longtext DEFAULT NULL COMMENT 'notes', --