]> git.koha-community.org Git - koha.git/blob - installer/data/mysql/atomicupdate/bug_23321.perl
Bug 23321: (QA follow-up) Accounts vs. Accounting
[koha.git] / installer / data / mysql / atomicupdate / bug_23321.perl
1 $DBversion = 'XXX';    # will be replaced by the RM
2 if ( CheckVersion($DBversion) ) {
3
4     unless ( TableExists( 'cash_registers' ) ) {
5         $dbh->do(qq{
6     CREATE TABLE `cash_registers` (
7     `id` int(11) NOT NULL auto_increment, -- unique identifier for each account register
8     `name` varchar(24) NOT NULL, -- the user friendly identifier for each account register
9     `description` longtext NOT NULL, -- the user friendly description for each account register
10     `branch` varchar(10) NOT NULL, -- the foreign key the library this account register belongs
11     `branch_default` tinyint(1) NOT NULL DEFAULT 0, -- boolean flag to denote that this till is the branch default
12     `starting_float` decimal(28, 6), -- the starting float this account register should be assigned
13     `archived` tinyint(1) NOT NULL DEFAULT 0, -- boolean flag to denote if this till is archived or not
14     PRIMARY KEY (`id`),
15     UNIQUE KEY `name` (`name`,`branch`),
16     CONSTRAINT cash_registers_branch FOREIGN KEY (branch) REFERENCES branches (branchcode) ON UPDATE CASCADE ON DELETE CASCADE
17     ) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;
18         });
19     }
20
21     unless ( column_exists( 'accountlines', 'register_id' ) ) {
22         $dbh->do(qq{ALTER TABLE `accountlines` ADD `register_id` int(11) NULL DEFAULT NULL AFTER `manager_id`});
23         $dbh->do(qq{
24             ALTER TABLE `accountlines`
25             ADD CONSTRAINT `accountlines_ibfk_registers` FOREIGN KEY (`register_id`)
26             REFERENCES `cash_registers` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
27         });
28     }
29
30     SetVersion($DBversion);
31     print "Upgrade to $DBversion done (Bug 23321 - Add cash_registers table)\n";
32 }