View | Details | Raw Unified | Return to bug 14957
Collapse All | Expand All

(-)a/Koha/Schema/Result/MarcMergeRule.pm (-1 / +110 lines)
Line 0 Link Here
0
- 
1
use utf8;
2
package Koha::Schema::Result::MarcMergeRule;
3
4
# Created by DBIx::Class::Schema::Loader
5
# DO NOT MODIFY THE FIRST PART OF THIS FILE
6
7
=head1 NAME
8
9
Koha::Schema::Result::MarcMergeRule
10
11
=cut
12
13
use strict;
14
use warnings;
15
16
use base 'DBIx::Class::Core';
17
18
=head1 TABLE: C<marc_merge_rules>
19
20
=cut
21
22
__PACKAGE__->table("marc_merge_rules");
23
24
=head1 ACCESSORS
25
26
=head2 id
27
28
  data_type: 'integer'
29
  is_auto_increment: 1
30
  is_nullable: 0
31
32
=head2 tag
33
34
  data_type: 'varchar'
35
  is_nullable: 0
36
  size: 255
37
38
=head2 module
39
40
  data_type: 'varchar'
41
  is_nullable: 0
42
  size: 127
43
44
=head2 filter
45
46
  data_type: 'varchar'
47
  is_nullable: 0
48
  size: 255
49
50
=head2 add
51
52
  data_type: 'tinyint'
53
  is_nullable: 0
54
55
=head2 append
56
57
  data_type: 'tinyint'
58
  is_nullable: 0
59
60
=head2 remove
61
62
  data_type: 'tinyint'
63
  is_nullable: 0
64
65
=head2 delete
66
67
  accessor: undef
68
  data_type: 'tinyint'
69
  is_nullable: 0
70
71
=cut
72
73
__PACKAGE__->add_columns(
74
  "id",
75
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
76
  "tag",
77
  { data_type => "varchar", is_nullable => 0, size => 255 },
78
  "module",
79
  { data_type => "varchar", is_nullable => 0, size => 127 },
80
  "filter",
81
  { data_type => "varchar", is_nullable => 0, size => 255 },
82
  "add",
83
  { data_type => "tinyint", is_nullable => 0 },
84
  "append",
85
  { data_type => "tinyint", is_nullable => 0 },
86
  "remove",
87
  { data_type => "tinyint", is_nullable => 0 },
88
  "delete",
89
  { accessor => undef, data_type => "tinyint", is_nullable => 0 },
90
);
91
92
=head1 PRIMARY KEY
93
94
=over 4
95
96
=item * L</id>
97
98
=back
99
100
=cut
101
102
__PACKAGE__->set_primary_key("id");
103
104
105
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-02-10 16:31:43
106
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jdTzjEX0dUsXzK7LtlOS9w
107
108
109
# You can replace this text with custom code or comments, and it will be preserved on regeneration
110
1;

Return to bug 14957