From 5f9f555c72ce4f3418490b381df790acd20561a9 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Mon, 13 Apr 2015 13:26:06 -0300 Subject: [PATCH] Bug 13539: (RM followup) DBIx schema update Signed-off-by: Tomas Cohen Arazi --- Koha/Schema/Result/Borrower.pm | 19 +------ Koha/Schema/Result/Patroncard.pm | 105 --------------------------------------- 2 files changed, 2 insertions(+), 122 deletions(-) delete mode 100644 Koha/Schema/Result/Patroncard.pm diff --git a/Koha/Schema/Result/Borrower.pm b/Koha/Schema/Result/Borrower.pm index dd2232b..04b7c8d 100644 --- a/Koha/Schema/Result/Borrower.pm +++ b/Koha/Schema/Result/Borrower.pm @@ -933,21 +933,6 @@ __PACKAGE__->has_many( { cascade_copy => 0, cascade_delete => 0 }, ); -=head2 patroncards - -Type: has_many - -Related object: L - -=cut - -__PACKAGE__->has_many( - "patroncards", - "Koha::Schema::Result::Patroncard", - { "foreign.borrowernumber" => "self.borrowernumber" }, - { cascade_copy => 0, cascade_delete => 0 }, -); - =head2 patronimage Type: might_have @@ -1154,8 +1139,8 @@ Composing rels: L -> ordernumber __PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); -# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-03-11 11:50:38 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4wVgO/FIFHQV+AxzXc+k8g +# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-13 13:23:31 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:eNJqc7s8OA+vQIKYUryvaA # You can replace this text with custom content, and it will be preserved on regeneration diff --git a/Koha/Schema/Result/Patroncard.pm b/Koha/Schema/Result/Patroncard.pm deleted file mode 100644 index 454e958..0000000 --- a/Koha/Schema/Result/Patroncard.pm +++ /dev/null @@ -1,105 +0,0 @@ -use utf8; -package Koha::Schema::Result::Patroncard; - -# Created by DBIx::Class::Schema::Loader -# DO NOT MODIFY THE FIRST PART OF THIS FILE - -=head1 NAME - -Koha::Schema::Result::Patroncard - -=cut - -use strict; -use warnings; - -use base 'DBIx::Class::Core'; - -=head1 TABLE: C - -=cut - -__PACKAGE__->table("patroncards"); - -=head1 ACCESSORS - -=head2 cardid - - data_type: 'integer' - is_auto_increment: 1 - is_nullable: 0 - -=head2 batch_id - - data_type: 'varchar' - default_value: 1 - is_nullable: 0 - size: 10 - -=head2 borrowernumber - - data_type: 'integer' - is_foreign_key: 1 - is_nullable: 0 - -=head2 timestamp - - data_type: 'timestamp' - datetime_undef_if_invalid: 1 - default_value: current_timestamp - is_nullable: 0 - -=cut - -__PACKAGE__->add_columns( - "cardid", - { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, - "batch_id", - { data_type => "varchar", default_value => 1, is_nullable => 0, size => 10 }, - "borrowernumber", - { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, - "timestamp", - { - data_type => "timestamp", - datetime_undef_if_invalid => 1, - default_value => \"current_timestamp", - is_nullable => 0, - }, -); - -=head1 PRIMARY KEY - -=over 4 - -=item * L - -=back - -=cut - -__PACKAGE__->set_primary_key("cardid"); - -=head1 RELATIONS - -=head2 borrowernumber - -Type: belongs_to - -Related object: L - -=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:ZDpN4iw7+y9YP7Dc+ou8lQ - - -# You can replace this text with custom content, and it will be preserved on regeneration -1; -- 2.3.5