From 1c4557de4f03441a9dc50e81730de6f2f95e2524 Mon Sep 17 00:00:00 2001 From: David Gustafsson Date: Mon, 17 Jun 2019 15:45:56 +0200 Subject: [PATCH] Bug 14957: DO NOT PUSH Schema changes Signed-off-by: David Nind --- Koha/Schema/Result/MarcMergeRule.pm | 110 ++++++++++++++++++++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 Koha/Schema/Result/MarcMergeRule.pm diff --git a/Koha/Schema/Result/MarcMergeRule.pm b/Koha/Schema/Result/MarcMergeRule.pm new file mode 100644 index 0000000000..a753412444 --- /dev/null +++ b/Koha/Schema/Result/MarcMergeRule.pm @@ -0,0 +1,110 @@ +use utf8; +package Koha::Schema::Result::MarcMergeRule; + +# Created by DBIx::Class::Schema::Loader +# DO NOT MODIFY THE FIRST PART OF THIS FILE + +=head1 NAME + +Koha::Schema::Result::MarcMergeRule + +=cut + +use strict; +use warnings; + +use base 'DBIx::Class::Core'; + +=head1 TABLE: C + +=cut + +__PACKAGE__->table("marc_merge_rules"); + +=head1 ACCESSORS + +=head2 id + + data_type: 'integer' + is_auto_increment: 1 + is_nullable: 0 + +=head2 tag + + data_type: 'varchar' + is_nullable: 0 + size: 255 + +=head2 module + + data_type: 'varchar' + is_nullable: 0 + size: 127 + +=head2 filter + + data_type: 'varchar' + is_nullable: 0 + size: 255 + +=head2 add + + data_type: 'tinyint' + is_nullable: 0 + +=head2 append + + data_type: 'tinyint' + is_nullable: 0 + +=head2 remove + + data_type: 'tinyint' + is_nullable: 0 + +=head2 delete + + accessor: undef + data_type: 'tinyint' + is_nullable: 0 + +=cut + +__PACKAGE__->add_columns( + "id", + { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, + "tag", + { data_type => "varchar", is_nullable => 0, size => 255 }, + "module", + { data_type => "varchar", is_nullable => 0, size => 127 }, + "filter", + { data_type => "varchar", is_nullable => 0, size => 255 }, + "add", + { data_type => "tinyint", is_nullable => 0 }, + "append", + { data_type => "tinyint", is_nullable => 0 }, + "remove", + { data_type => "tinyint", is_nullable => 0 }, + "delete", + { accessor => undef, data_type => "tinyint", is_nullable => 0 }, +); + +=head1 PRIMARY KEY + +=over 4 + +=item * L + +=back + +=cut + +__PACKAGE__->set_primary_key("id"); + + +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2019-06-17 13:34:16 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8EGbKSA/nvu0GDEQy76uyQ + + +# You can replace this text with custom code or comments, and it will be preserved on regeneration +1; -- 2.11.0