From f1d9d3cb5fdaa35ee28cd7a06d3f04d8ce9dfb5d Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 30 Jun 2015 07:32:56 -0400 Subject: [PATCH] Bug 9809 - Remove DBIC module for reserveconstraints Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall Signed-off-by: Jonathan Druart --- Koha/Schema/Result/Reserveconstraint.pm | 82 --------------------------------- 1 file changed, 82 deletions(-) delete mode 100644 Koha/Schema/Result/Reserveconstraint.pm diff --git a/Koha/Schema/Result/Reserveconstraint.pm b/Koha/Schema/Result/Reserveconstraint.pm deleted file mode 100644 index 69d7a2b..0000000 --- a/Koha/Schema/Result/Reserveconstraint.pm +++ /dev/null @@ -1,82 +0,0 @@ -use utf8; -package Koha::Schema::Result::Reserveconstraint; - -# Created by DBIx::Class::Schema::Loader -# DO NOT MODIFY THE FIRST PART OF THIS FILE - -=head1 NAME - -Koha::Schema::Result::Reserveconstraint - -=cut - -use strict; -use warnings; - -use base 'DBIx::Class::Core'; - -=head1 TABLE: C - -=cut - -__PACKAGE__->table("reserveconstraints"); - -=head1 ACCESSORS - -=head2 borrowernumber - - data_type: 'integer' - default_value: 0 - is_nullable: 0 - -=head2 reservedate - - data_type: 'date' - datetime_undef_if_invalid: 1 - is_nullable: 1 - -=head2 biblionumber - - data_type: 'integer' - default_value: 0 - is_nullable: 0 - -=head2 biblioitemnumber - - data_type: 'integer' - is_nullable: 1 - -=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_nullable => 0 }, - "reservedate", - { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, - "biblionumber", - { data_type => "integer", default_value => 0, is_nullable => 0 }, - "biblioitemnumber", - { data_type => "integer", is_nullable => 1 }, - "timestamp", - { - data_type => "timestamp", - datetime_undef_if_invalid => 1, - default_value => \"current_timestamp", - is_nullable => 0, - }, -); - - -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qsSPIwQxTBxw3s2a3hD34g - - -# You can replace this text with custom content, and it will be preserved on regeneration -1; -- 2.1.0