Bug 14826: (QA follow-up) Remove obsolete DBIx schema file
authorMarcel de Rooy <m.de.rooy@rijksmuseum.nl>
Mon, 23 Oct 2017 10:49:20 +0000 (12:49 +0200)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 23 Oct 2017 15:06:15 +0000 (12:06 -0300)
Removes Accountoffset.pm.
Has been replaced by AccountOffset.pm on bug 14826.

Test plan:
Run TestBuilder.t. Should pass now again.

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Koha/Schema/Result/Accountoffset.pm [deleted file]

diff --git a/Koha/Schema/Result/Accountoffset.pm b/Koha/Schema/Result/Accountoffset.pm
deleted file mode 100644 (file)
index e9d8c2f..0000000
+++ /dev/null
@@ -1,106 +0,0 @@
-use utf8;
-package Koha::Schema::Result::Accountoffset;
-
-# Created by DBIx::Class::Schema::Loader
-# DO NOT MODIFY THE FIRST PART OF THIS FILE
-
-=head1 NAME
-
-Koha::Schema::Result::Accountoffset
-
-=cut
-
-use strict;
-use warnings;
-
-use base 'DBIx::Class::Core';
-
-=head1 TABLE: C<accountoffsets>
-
-=cut
-
-__PACKAGE__->table("accountoffsets");
-
-=head1 ACCESSORS
-
-=head2 borrowernumber
-
-  data_type: 'integer'
-  default_value: 0
-  is_foreign_key: 1
-  is_nullable: 0
-
-=head2 accountno
-
-  data_type: 'smallint'
-  default_value: 0
-  is_nullable: 0
-
-=head2 offsetaccount
-
-  data_type: 'smallint'
-  default_value: 0
-  is_nullable: 0
-
-=head2 offsetamount
-
-  data_type: 'decimal'
-  is_nullable: 1
-  size: [28,6]
-
-=head2 timestamp
-
-  data_type: 'timestamp'
-  datetime_undef_if_invalid: 1
-  default_value: current_timestamp
-  is_nullable: 0
-
-=cut
-
-__PACKAGE__->add_columns(
-  "borrowernumber",
-  {
-    data_type      => "integer",
-    default_value  => 0,
-    is_foreign_key => 1,
-    is_nullable    => 0,
-  },
-  "accountno",
-  { data_type => "smallint", default_value => 0, is_nullable => 0 },
-  "offsetaccount",
-  { data_type => "smallint", default_value => 0, is_nullable => 0 },
-  "offsetamount",
-  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
-  "timestamp",
-  {
-    data_type => "timestamp",
-    datetime_undef_if_invalid => 1,
-    default_value => \"current_timestamp",
-    is_nullable => 0,
-  },
-);
-
-=head1 RELATIONS
-
-=head2 borrowernumber
-
-Type: belongs_to
-
-Related object: L<Koha::Schema::Result::Borrower>
-
-=cut
-
-__PACKAGE__->belongs_to(
-  "borrowernumber",
-  "Koha::Schema::Result::Borrower",
-  { borrowernumber => "borrowernumber" },
-  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
-);
-
-
-# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OTfcUiJCPb5aU/gjqAb/bA
-
-
-# You can replace this text with custom content, and it will be preserved on regeneration
-1;