From 468de5f888b45791c87bf01052b2b919e6b2e889 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 31 Jul 2012 11:03:25 +0200 Subject: [PATCH] Bug 7167: Add .pl and .sql examples Content-Type: text/plain; charset="utf-8" Those files are in version directory, so will never be executed by the updater If you want to provide an update, do it in a 3.09/ directory (if your update is expected for 3.10 version) Note that the updater use a md5sum checker. So, if the same update is in 2 different places, it will be detected. That will be handy for changes made on both stable and master: a library running stable will get the update when updating. When upgrading to the next major release, Koha will detect the patch has already been applied, and no error will be thrown. With the previous mechanism, a DBRev ported to stable was re-executed when upgrading to master, resulting in a nasty (but usually harmless) error message Signed-off-by: Paul Poulain Signed-off-by: Chris Nighswonger --- .../data/mysql/versions/update_sample.sql.sample | 8 -------- 1 file changed, 8 deletions(-) diff --git a/installer/data/mysql/versions/update_sample.sql.sample b/installer/data/mysql/versions/update_sample.sql.sample index ac83c0b..bb2cc8d 100644 --- a/installer/data/mysql/versions/update_sample.sql.sample +++ b/installer/data/mysql/versions/update_sample.sql.sample @@ -25,11 +25,3 @@ CREATE TABLE `testtable1` ( -- without ; just for the sample INSERT INTO `systempreferences` VALUES ('TestSyspref1','2','set the level of error info sent to the browser. 0=none, 1=some, 2=most','0|1|2','Choice') // - --- Note that you can even put more than 1 SQL query without DELIMITER --- In this case, the updater will consider them as 1 query. --- That can be usefull if you want to do a logical grouping -INSERT INTO `systempreferences` VALUES ('TestSyspref2','2','set the level of error info sent to the browser. 0=none, 1=some, 2=most','0|1|2','Choice'); -INSERT INTO `systempreferences` VALUES ('TestSyspref3','2','set the level of error info sent to the browser. 0=none, 1=some, 2=most','0|1|2','Choice'); -// --- End of complex sample -- 1.7.9.5