Bug 8296: DBRev 3.21.00.052
authorTomas Cohen Arazi <tomascohen@theke.io>
Thu, 5 Nov 2015 13:45:01 +0000 (10:45 -0300)
committerTomas Cohen Arazi <tomascohen@theke.io>
Thu, 5 Nov 2015 13:45:01 +0000 (10:45 -0300)
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Koha.pm
installer/data/mysql/atomicupdate/bug_8296.sql [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index 47edf04..4dcb806 100644 (file)
--- a/Koha.pm
+++ b/Koha.pm
@@ -29,7 +29,7 @@ use vars qw{ $VERSION };
 # - #4 : the developer version. The 4th number is the database subversion.
 #        used by developers when the database changes. updatedatabase take care of the changes itself
 #        and is automatically called by Auth.pm when needed.
-$VERSION = "3.21.00.051";
+$VERSION = "3.21.00.052";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/bug_8296.sql b/installer/data/mysql/atomicupdate/bug_8296.sql
deleted file mode 100644 (file)
index 6c742dd..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-ALTER TABLE serial
-ADD COLUMN publisheddatetext VARCHAR(100) DEFAULT NULL AFTER publisheddate
index c2aa3eb..1000399 100755 (executable)
@@ -11310,6 +11310,16 @@ if ( CheckVersion($DBversion) ) {
     SetVersion($DBversion);
 }
 
+$DBversion = "3.21.00.052";
+if ( CheckVersion($DBversion) ) {
+    $dbh->do(q{
+        ALTER TABLE serial
+            ADD COLUMN publisheddatetext VARCHAR(100) DEFAULT NULL AFTER publisheddate
+    });
+    print "Upgrade to $DBversion done (Bug 8296: Add descriptive (text) published date field for serials)\n";
+    SetVersion($DBversion);
+}
+
 # DEVELOPER PROCESS, search for anything to execute in the db_update directory
 # SEE bug 13068
 # if there is anything in the atomicupdate, read and execute it.