From 5176edb8a1bb9313d201bfc94bb821b62baf25a0 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 27 Oct 2021 09:17:25 +0200 Subject: [PATCH] Bug 14957: DBIC changes - Remove MarcOverlayRulesModule.pm Where is that coming from?? --- Koha/Schema/Result/MarcOverlayRulesModule.pm | 103 ------------------- 1 file changed, 103 deletions(-) delete mode 100644 Koha/Schema/Result/MarcOverlayRulesModule.pm diff --git a/Koha/Schema/Result/MarcOverlayRulesModule.pm b/Koha/Schema/Result/MarcOverlayRulesModule.pm deleted file mode 100644 index a3c8f58c16a..00000000000 --- a/Koha/Schema/Result/MarcOverlayRulesModule.pm +++ /dev/null @@ -1,103 +0,0 @@ -use utf8; -package Koha::Schema::Result::MarcOverlayRulesModule; - -# Created by DBIx::Class::Schema::Loader -# DO NOT MODIFY THE FIRST PART OF THIS FILE - -=head1 NAME - -Koha::Schema::Result::MarcOverlayRulesModule - -=cut - -use strict; -use warnings; - -use base 'DBIx::Class::Core'; - -=head1 TABLE: C - -=cut - -__PACKAGE__->table("marc_overlay_rules_modules"); - -=head1 ACCESSORS - -=head2 name - - data_type: 'varchar' - is_nullable: 0 - size: 127 - -=head2 description - - data_type: 'varchar' - is_nullable: 1 - size: 255 - -=head2 specificity - - data_type: 'integer' - is_nullable: 0 - -=cut - -__PACKAGE__->add_columns( - "name", - { data_type => "varchar", is_nullable => 0, size => 127 }, - "description", - { data_type => "varchar", is_nullable => 1, size => 255 }, - "specificity", - { data_type => "integer", is_nullable => 0 }, -); - -=head1 PRIMARY KEY - -=over 4 - -=item * L - -=back - -=cut - -__PACKAGE__->set_primary_key("name"); - -=head1 UNIQUE CONSTRAINTS - -=head2 C - -=over 4 - -=item * L - -=back - -=cut - -__PACKAGE__->add_unique_constraint("specificity", ["specificity"]); - -=head1 RELATIONS - -=head2 marc_overlay_rules - -Type: has_many - -Related object: L - -=cut - -__PACKAGE__->has_many( - "marc_overlay_rules", - "Koha::Schema::Result::MarcOverlayRule", - { "foreign.module" => "self.name" }, - { cascade_copy => 0, cascade_delete => 0 }, -); - - -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-03-26 17:50:29 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:NcP7xFRa7qXyck6wIQg/YQ - - -# You can replace this text with custom code or comments, and it will be preserved on regeneration -1; -- 2.25.1