Bug 11928 - Remove unused table aqorderdelivery
authorMark Tompsett <mtompset@hotmail.com>
Wed, 12 Mar 2014 15:53:17 +0000 (11:53 -0400)
committerGalen Charlton <gmc@esilibrary.com>
Thu, 13 Mar 2014 14:37:16 +0000 (14:37 +0000)
Aqorderdelivery has apparently never been used. This patch
removes it.

TEST PLAN
---------
1) Apply patch.
2) Run the Koha QA Test tool.
3) Confirm table is there.
4) Run upgrade process.
5) Confirm table has been removed.
6) Drop koha database and create empty one.
7) Fresh install from staff client.
8) Confirm table was not created.
9) I'm unsure how to test the Schema's. It was just git rm'd.

Signed-off-by: Galen Charlton <gmc@esilibrary.com>
Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
Koha/Schema/Result/Aqorderdelivery.pm [deleted file]
installer/data/mysql/kohastructure.sql
installer/data/mysql/updatedatabase.pl

diff --git a/Koha/Schema/Result/Aqorderdelivery.pm b/Koha/Schema/Result/Aqorderdelivery.pm
deleted file mode 100644 (file)
index 453d8ff..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-use utf8;
-package Koha::Schema::Result::Aqorderdelivery;
-
-# Created by DBIx::Class::Schema::Loader
-# DO NOT MODIFY THE FIRST PART OF THIS FILE
-
-=head1 NAME
-
-Koha::Schema::Result::Aqorderdelivery
-
-=cut
-
-use strict;
-use warnings;
-
-use base 'DBIx::Class::Core';
-
-=head1 TABLE: C<aqorderdelivery>
-
-=cut
-
-__PACKAGE__->table("aqorderdelivery");
-
-=head1 ACCESSORS
-
-=head2 ordernumber
-
-  data_type: 'date'
-  datetime_undef_if_invalid: 1
-  is_nullable: 1
-
-=head2 deliverynumber
-
-  data_type: 'smallint'
-  default_value: 0
-  is_nullable: 0
-
-=head2 deliverydate
-
-  data_type: 'varchar'
-  is_nullable: 1
-  size: 18
-
-=head2 qtydelivered
-
-  data_type: 'smallint'
-  is_nullable: 1
-
-=head2 deliverycomments
-
-  data_type: 'mediumtext'
-  is_nullable: 1
-
-=cut
-
-__PACKAGE__->add_columns(
-  "ordernumber",
-  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
-  "deliverynumber",
-  { data_type => "smallint", default_value => 0, is_nullable => 0 },
-  "deliverydate",
-  { data_type => "varchar", is_nullable => 1, size => 18 },
-  "qtydelivered",
-  { data_type => "smallint", is_nullable => 1 },
-  "deliverycomments",
-  { data_type => "mediumtext", is_nullable => 1 },
-);
-
-
-# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hS/Ww/p7nHWiHNumkBifiQ
-
-
-# You can replace this text with custom content, and it will be preserved on regeneration
-1;
index 6618d58..3cf9c65 100644 (file)
@@ -2956,19 +2956,6 @@ CREATE TABLE `aqcontract` (
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
 
 --
--- Table structure for table `aqorderdelivery`
---
-
-DROP TABLE IF EXISTS `aqorderdelivery`;
-CREATE TABLE `aqorderdelivery` (
-  `ordernumber` date default NULL,
-  `deliverynumber` smallint(6) NOT NULL default 0,
-  `deliverydate` varchar(18) default NULL,
-  `qtydelivered` smallint(6) default NULL,
-  `deliverycomments` mediumtext
-) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-
---
 -- Table structure for table `aqorders`
 --
 
index 78ba6ca..fe674d5 100755 (executable)
@@ -8065,6 +8065,15 @@ if ( CheckVersion($DBversion) ) {
     SetVersion($DBversion);
 }
 
+$DBversion = "3.15.00.XXX";
+if ( CheckVersion($DBversion) ) {
+    $dbh->do(q{
+        DROP TABLE aqorderdelivery;
+    });
+    print "Upgrade to $DBversion done (Bug 11928 - remove unused table)\n";
+    SetVersion($DBversion);
+}
+
 =head1 FUNCTIONS
 
 =head2 TableExists($table)