Bug 24156: DB changes
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 5 Dec 2019 16:13:30 +0000 (17:13 +0100)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 25 Jun 2020 08:51:59 +0000 (10:51 +0200)
Add a new table tables_settings to store default_display_length and
default_sort_order.

Signed-off-by: Liz Rea <wizzyrea@gmail.com>
Signed-off-by: Alex Arnaud <alex.arnaud@biblibre.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

installer/data/mysql/atomicupdate/bug_24156.perl [new file with mode: 0644]
installer/data/mysql/kohastructure.sql

diff --git a/installer/data/mysql/atomicupdate/bug_24156.perl b/installer/data/mysql/atomicupdate/bug_24156.perl
new file mode 100644 (file)
index 0000000..5bc0433
--- /dev/null
@@ -0,0 +1,18 @@
+$DBversion = 'XXX'; # will be replaced by the RM
+if( CheckVersion( $DBversion ) ) {
+    unless ( TableExists( 'tables_settings' ) ) {
+        $dbh->do(q|
+            CREATE TABLE tables_settings (
+                module varchar(255) NOT NULL,
+                page varchar(255) NOT NULL,
+                tablename varchar(255) NOT NULL,
+                default_display_length smallint(6) NOT NULL DEFAULT 20,
+                default_sort_order varchar(255),
+                PRIMARY KEY(module (191), page (191), tablename (191) )
+            ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+        |);
+    }
+
+    SetVersion( $DBversion );
+    print "Upgrade to $DBversion done (Bug 24156 - Add new table tables_settings)\n";
+}
index 6e87aef..4f6a9c3 100644 (file)
@@ -3663,6 +3663,19 @@ CREATE TABLE IF NOT EXISTS columns_settings (
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
 
 --
+-- Table structure for table `tables_settings`
+--
+
+CREATE TABLE IF NOT EXISTS tables_settings (
+    module varchar(255) NOT NULL,
+    page varchar(255) NOT NULL,
+    tablename varchar(255) NOT NULL,
+    default_display_length smallint(6) NOT NULL DEFAULT 20 ,
+    default_sort_order varchar(255),
+    PRIMARY KEY(module (191), page (191), tablename (191) )
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+--
 -- Table structure for table 'items_search_fields'
 --