[koha-commits] main Koha release repository branch master updated. v16.11.00-242-g2b30312

Git repo owner gitmaster at git.koha-community.org
Wed Jan 18 16:26:24 CET 2017


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "main Koha release repository".

The branch, master has been updated
       via  2b303129b82a5134f04c24907c05bf863603fef7 (commit)
      from  288304c25ee1354b6514b3911faaa8e8ca45a35b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 2b303129b82a5134f04c24907c05bf863603fef7
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Jan 16 11:51:01 2017 +0100

    Bug 17914: Do not try and add the updated_on columns to the borrowers and deletedborrowers table
    
    Bug 10459 has been backported and the DB entry (add borrowers.updated_on and
    deletedborrower.updated_on) is now played in
      - 16.06.00.027
      - 16.05.00.002
      - 3.22.08.001
    
    This will raise a MySQL warning if the column already exists.
      DBD::mysql::db do failed: Duplicate column name 'updated_on'
    
    Since bug 17234 we have now a subroutine (C4::Installer::column_exists) to test
    if a column exists.
    When a DB entry modifying the DB structure is backported, it HAS TO check if the
    column, constraint or table exists before executing the query.
    
    Test plan:
    git checkout 3.22.x (16.05.x or 16.11.x)
    install Koha
    git checkout master
    execute the installer
    => Without this patch you will get a warning when adding borrowers.updated_on)
    => With this patch, you should not get it
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

-----------------------------------------------------------------------

Summary of changes:
 installer/data/mysql/updatedatabase.pl |   26 ++++++++++++++------------
 1 file changed, 14 insertions(+), 12 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list