View | Details | Raw Unified | Return to bug 9016
Collapse All | Expand All

(-)a/installer/data/mysql/kohastructure.sql (-1 / +20 lines)
Lines 1352-1358 CREATE TABLE `letter` ( -- table for all notice templates in Koha Link Here
1352
  `is_html` tinyint(1) default 0, -- does this notice or slip use HTML (1 for yes, 0 for no)
1352
  `is_html` tinyint(1) default 0, -- does this notice or slip use HTML (1 for yes, 0 for no)
1353
  `title` varchar(200) NOT NULL default '', -- subject line of the notice
1353
  `title` varchar(200) NOT NULL default '', -- subject line of the notice
1354
  `content` text, -- body text for the notice or slip
1354
  `content` text, -- body text for the notice or slip
1355
  PRIMARY KEY  (`module`,`code`, `branchcode`)
1355
  `message_transport_type` varchar(20) NOT NULL DEFAULT 'email', -- transport type for this notice
1356
  PRIMARY KEY  (`module`,`code`, `branchcode`, `message_transport_type`),
1357
  CONSTRAINT `message_transport_type_fk` FOREIGN KEY (`message_transport_type`)
1358
  REFERENCES `message_transport_types` (`message_transport_type`) ON DELETE CASCADE ON UPDATE CASCADE
1356
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1359
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1357
1360
1358
--
1361
--
Lines 2555-2560 CREATE TABLE `message_transport_types` ( Link Here
2555
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2558
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2556
2559
2557
--
2560
--
2561
-- Table structure for table `overduerules_transport_types`
2562
--
2563
2564
DROP TABLE IF EXISTS `overduerules_transport_types`;
2565
CREATE TABLE overduerules_transport_types(
2566
    `id` INT(11) NOT NULL AUTO_INCREMENT,
2567
    `branchcode` varchar(10) NOT NULL DEFAULT '',
2568
    `categorycode` VARCHAR(10) NOT NULL DEFAULT '',
2569
    `letternumber` INT(1) NOT NULL DEFAULT 1,
2570
    `message_transport_type` VARCHAR(20) NOT NULL DEFAULT 'email',
2571
    PRIMARY KEY (id),
2572
    CONSTRAINT overduerules_fk FOREIGN KEY (branchcode, categorycode) REFERENCES overduerules (branchcode, categorycode) ON DELETE CASCADE ON UPDATE CASCADE,
2573
    CONSTRAINT mtt_fk FOREIGN KEY (message_transport_type) REFERENCES message_transport_types (message_transport_type) ON DELETE CASCADE ON UPDATE CASCADE
2574
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2575
2576
--
2558
-- Table structure for table `message_attributes`
2577
-- Table structure for table `message_attributes`
2559
--
2578
--
2560
2579
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +59 lines)
Lines 7885-7890 if(CheckVersion($DBversion)) { Link Here
7885
    SetVersion($DBversion);
7885
    SetVersion($DBversion);
7886
}
7886
}
7887
7887
7888
7889
7890
7891
7892
7893
7894
7895
$DBversion = "3.15.00.XXX";
7896
if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
7897
7898
    $dbh->do( q{
7899
        ALTER TABLE letter ADD COLUMN message_transport_type VARCHAR(20) NOT NULL DEFAULT 'email' AFTER content
7900
    } );
7901
7902
    $dbh->do( q{
7903
        ALTER TABLE letter ADD CONSTRAINT message_transport_type_fk FOREIGN KEY (message_transport_type) REFERENCES message_transport_types(message_transport_type);
7904
    } );
7905
7906
    $dbh->do( q{
7907
        ALTER TABLE letter DROP PRIMARY KEY, ADD PRIMARY KEY (`module`,`code`,`branchcode`, message_transport_type);
7908
    } );
7909
7910
    $dbh->do( q{
7911
        CREATE TABLE overduerules_transport_types(
7912
            id INT(11) NOT NULL AUTO_INCREMENT,
7913
            branchcode varchar(10) NOT NULL DEFAULT '',
7914
            categorycode VARCHAR(10) NOT NULL DEFAULT '',
7915
            letternumber INT(1) NOT NULL DEFAULT 1,
7916
            message_transport_type VARCHAR(20) NOT NULL DEFAULT 'email',
7917
            PRIMARY KEY (id),
7918
            CONSTRAINT overduerules_fk FOREIGN KEY (branchcode, categorycode) REFERENCES overduerules (branchcode, categorycode) ON DELETE CASCADE ON UPDATE CASCADE,
7919
            CONSTRAINT mtt_fk FOREIGN KEY (message_transport_type) REFERENCES message_transport_types (message_transport_type) ON DELETE CASCADE ON UPDATE CASCADE
7920
        ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
7921
    } );
7922
7923
    my $sth = $dbh->prepare( q{
7924
        SELECT * FROM overduerules;
7925
    } );
7926
7927
    $sth->execute;
7928
    my $sth_insert_mtt = $dbh->prepare( q{
7929
        INSERT INTO overduerules_transport_types (branchcode, categorycode, letternumber, message_transport_type) VALUES ( ?, ?, ?, ? )
7930
    } );
7931
    while ( my $row = $sth->fetchrow_hashref ) {
7932
        my $branchcode = $row->{branchcode};
7933
        my $categorycode = $row->{categorycode};
7934
        for my $letternumber ( 1 .. 3 ) {
7935
            next unless $row->{"letter$letternumber"};
7936
            $sth_insert_mtt->execute(
7937
                $branchcode, $categorycode, $letternumber, 'email'
7938
            );
7939
        }
7940
    }
7941
7942
    print "Upgrade done (Bug 9016: Adds the association table overduerules_transport_types)\n";
7943
    SetVersion($DBversion);
7944
}
7945
7946
7888
=head1 FUNCTIONS
7947
=head1 FUNCTIONS
7889
7948
7890
=head2 TableExists($table)
7949
=head2 TableExists($table)
7891
- 

Return to bug 9016