From 6f676012902d7157866d779aaba3ed167ad06c81 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 11 Jul 2017 09:45:44 -0400 Subject: [PATCH] Bug 18925 - Remove schema files for deleted tables --- Koha/Schema/Result/BranchBorrowerCircRule.pm | 122 -------------------------- Koha/Schema/Result/DefaultBorrowerCircRule.pm | 96 -------------------- 2 files changed, 218 deletions(-) delete mode 100644 Koha/Schema/Result/BranchBorrowerCircRule.pm delete mode 100644 Koha/Schema/Result/DefaultBorrowerCircRule.pm diff --git a/Koha/Schema/Result/BranchBorrowerCircRule.pm b/Koha/Schema/Result/BranchBorrowerCircRule.pm deleted file mode 100644 index 5123c43..0000000 --- a/Koha/Schema/Result/BranchBorrowerCircRule.pm +++ /dev/null @@ -1,122 +0,0 @@ -use utf8; -package Koha::Schema::Result::BranchBorrowerCircRule; - -# Created by DBIx::Class::Schema::Loader -# DO NOT MODIFY THE FIRST PART OF THIS FILE - -=head1 NAME - -Koha::Schema::Result::BranchBorrowerCircRule - -=cut - -use strict; -use warnings; - -use base 'DBIx::Class::Core'; - -=head1 TABLE: C - -=cut - -__PACKAGE__->table("branch_borrower_circ_rules"); - -=head1 ACCESSORS - -=head2 branchcode - - data_type: 'varchar' - is_foreign_key: 1 - is_nullable: 0 - size: 10 - -=head2 categorycode - - data_type: 'varchar' - is_foreign_key: 1 - is_nullable: 0 - size: 10 - -=head2 maxissueqty - - data_type: 'integer' - is_nullable: 1 - -=head2 maxonsiteissueqty - - data_type: 'integer' - is_nullable: 1 - -=head2 max_holds - - data_type: 'integer' - is_nullable: 1 - -=cut - -__PACKAGE__->add_columns( - "branchcode", - { data_type => "varchar", is_foreign_key => 1, is_nullable => 0, size => 10 }, - "categorycode", - { data_type => "varchar", is_foreign_key => 1, is_nullable => 0, size => 10 }, - "maxissueqty", - { data_type => "integer", is_nullable => 1 }, - "maxonsiteissueqty", - { data_type => "integer", is_nullable => 1 }, - "max_holds", - { data_type => "integer", is_nullable => 1 }, -); - -=head1 PRIMARY KEY - -=over 4 - -=item * L - -=item * L - -=back - -=cut - -__PACKAGE__->set_primary_key("categorycode", "branchcode"); - -=head1 RELATIONS - -=head2 branchcode - -Type: belongs_to - -Related object: L - -=cut - -__PACKAGE__->belongs_to( - "branchcode", - "Koha::Schema::Result::Branch", - { branchcode => "branchcode" }, - { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, -); - -=head2 categorycode - -Type: belongs_to - -Related object: L - -=cut - -__PACKAGE__->belongs_to( - "categorycode", - "Koha::Schema::Result::Category", - { categorycode => "categorycode" }, - { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, -); - - -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-06-27 14:54:53 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:sMWYrZafhg3InWiWPZ2Axw - - -# You can replace this text with custom content, and it will be preserved on regeneration -1; diff --git a/Koha/Schema/Result/DefaultBorrowerCircRule.pm b/Koha/Schema/Result/DefaultBorrowerCircRule.pm deleted file mode 100644 index 6164b8f..0000000 --- a/Koha/Schema/Result/DefaultBorrowerCircRule.pm +++ /dev/null @@ -1,96 +0,0 @@ -use utf8; -package Koha::Schema::Result::DefaultBorrowerCircRule; - -# Created by DBIx::Class::Schema::Loader -# DO NOT MODIFY THE FIRST PART OF THIS FILE - -=head1 NAME - -Koha::Schema::Result::DefaultBorrowerCircRule - -=cut - -use strict; -use warnings; - -use base 'DBIx::Class::Core'; - -=head1 TABLE: C - -=cut - -__PACKAGE__->table("default_borrower_circ_rules"); - -=head1 ACCESSORS - -=head2 categorycode - - data_type: 'varchar' - is_foreign_key: 1 - is_nullable: 0 - size: 10 - -=head2 maxissueqty - - data_type: 'integer' - is_nullable: 1 - -=head2 maxonsiteissueqty - - data_type: 'integer' - is_nullable: 1 - -=head2 max_holds - - data_type: 'integer' - is_nullable: 1 - -=cut - -__PACKAGE__->add_columns( - "categorycode", - { data_type => "varchar", is_foreign_key => 1, is_nullable => 0, size => 10 }, - "maxissueqty", - { data_type => "integer", is_nullable => 1 }, - "maxonsiteissueqty", - { data_type => "integer", is_nullable => 1 }, - "max_holds", - { data_type => "integer", is_nullable => 1 }, -); - -=head1 PRIMARY KEY - -=over 4 - -=item * L - -=back - -=cut - -__PACKAGE__->set_primary_key("categorycode"); - -=head1 RELATIONS - -=head2 categorycode - -Type: belongs_to - -Related object: L - -=cut - -__PACKAGE__->belongs_to( - "categorycode", - "Koha::Schema::Result::Category", - { categorycode => "categorycode" }, - { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, -); - - -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-06-27 14:54:53 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:aETMg1bzMvdgf/J/Zbu4+Q - - -# You can replace this text with custom content, and it will be preserved on regeneration -1; -- 2.10.2