]> git.koha-community.org Git - koha.git/commit
Bug 35539: Atomicupdate
authorPedro Amorim <pedro.amorim@ptfs-europe.com>
Tue, 2 Jan 2024 12:19:20 +0000 (12:19 +0000)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Thu, 25 Jul 2024 10:11:18 +0000 (11:11 +0100)
commitfcc4de201899c1ccd8203b79237bec80a14104d5
tree37419870837538f0580ae294566405aee3f0586e
parent4a4469fd6a3a7409a89263ab76d93c523268b992
Bug 35539: Atomicupdate

Removal of 'bulk' column
Removal of 'finetype' column
Removal of 'issuelimit' column

Test plan, k-t-d:
1) Add data to the relevant columns, run the following mysql:
update categories set bulk = 1;
update categories set finetype = 1;
update categories set issuelimit = 1;
2) Run updatedatabase, notice it shows a warning and does not update the database
3) Clean up the data, run the folllowing mysql:
update categories set bulk = null;
update categories set finetype = null;
update categories set issuelimit = null;
4) Run updatedatabase again, notice it updates the database as intended

Run:
t/db_dependent/Circulation/GetHardDueDate.t

Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
installer/data/mysql/atomicupdate/bug_35539.pl [new file with mode: 0755]