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

(-)a/installer/data/mysql/atomicupdate/bug_37054_add_branchcolor.pl (-5 / +4 lines)
Lines 3-23 use Koha::Installer::Output qw(say_warning say_failure say_success say_info); Link Here
3
3
4
return {
4
return {
5
    bug_number  => "37054",
5
    bug_number  => "37054",
6
    description => "Add branches.branchcolor",
6
    description => "Add branches.library_color",
7
    up          => sub {
7
    up          => sub {
8
        my ($args) = @_;
8
        my ($args) = @_;
9
        my ( $dbh, $out ) = @$args{qw(dbh out)};
9
        my ( $dbh, $out ) = @$args{qw(dbh out)};
10
10
11
        if ( !column_exists( 'branches', 'branchcolor' ) ) {
11
        if ( !column_exists( 'branches', 'library_color' ) ) {
12
            $dbh->do(
12
            $dbh->do(
13
                q{
13
                q{
14
                ALTER TABLE branches
14
                ALTER TABLE branches
15
                ADD COLUMN `branchcolor` varchar(16) DEFAULT 0 COMMENT 'defines the branch color'
15
                ADD COLUMN `library_color` varchar(16) DEFAULT 0 COMMENT 'defines the branch color'
16
                AFTER `opacusercss`
16
                AFTER `opacusercss`
17
            }
17
            }
18
            );
18
            );
19
        }
19
        }
20
        say $out "Added column 'branch.branchcolor'";
20
        say $out "Added column 'branch.library_color'";
21
22
    },
21
    },
23
};
22
};
(-)a/installer/data/mysql/kohastructure.sql (-3 / +2 lines)
Lines 1677-1683 CREATE TABLE `branches` ( Link Here
1677
  `public` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'whether this library should show in the opac',
1677
  `public` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'whether this library should show in the opac',
1678
  `opacuserjs` longtext DEFAULT NULL COMMENT 'branch specific javascript for the OPAC',
1678
  `opacuserjs` longtext DEFAULT NULL COMMENT 'branch specific javascript for the OPAC',
1679
  `opacusercss` longtext DEFAULT NULL COMMENT 'branch specific css for the OPAC',
1679
  `opacusercss` longtext DEFAULT NULL COMMENT 'branch specific css for the OPAC',
1680
  `branchcolor` varchar(16) DEFAULT NULL COMMENT 'branch specific color',
1680
  `library_color` varchar(16) DEFAULT NULL COMMENT 'library specific color',
1681
  PRIMARY KEY (`branchcode`)
1681
  PRIMARY KEY (`branchcode`)
1682
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1682
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1683
/*!40101 SET character_set_client = @saved_cs_client */;
1683
/*!40101 SET character_set_client = @saved_cs_client */;
Lines 6797-6800 CREATE TABLE `zebraqueue` ( Link Here
6797
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
6797
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
6798
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
6798
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
6799
6799
6800
-- Dump completed on 2024-11-25 12:13:27
6800
-- Dump completed on 2024-11-25 12:13:27
6801
- 

Return to bug 37054