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

(-)a/Koha/Schema/Result/AdditionalField.pm (-3 / +18 lines)
Lines 67-72 is an authorised value category Link Here
67
67
68
contains the marc field to copied into the record
68
contains the marc field to copied into the record
69
69
70
=head2 marcfield_mode
71
72
  data_type: 'enum'
73
  default_value: 'get'
74
  extra: {list => ["get","set"]}
75
  is_nullable: 0
76
77
mode of operation (get or set) for marcfield
78
70
=head2 searchable
79
=head2 searchable
71
80
72
  data_type: 'tinyint'
81
  data_type: 'tinyint'
Lines 88-93 __PACKAGE__->add_columns( Link Here
88
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 32 },
97
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 32 },
89
  "marcfield",
98
  "marcfield",
90
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 16 },
99
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 16 },
100
  "marcfield_mode",
101
  {
102
    data_type => "enum",
103
    default_value => "get",
104
    extra => { list => ["get", "set"] },
105
    is_nullable => 0,
106
  },
91
  "searchable",
107
  "searchable",
92
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
108
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
93
);
109
);
Lines 138-145 __PACKAGE__->has_many( Link Here
138
);
154
);
139
155
140
156
141
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-01-19 06:49:06
157
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-02-10 15:43:31
142
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4GqBQNlfw8ITsUZH0GidsQ
158
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Ddjyb8kHmHDNdkAgzM+THg
143
159
144
160
145
# You can replace this text with custom code or comments, and it will be preserved on regeneration
161
# You can replace this text with custom code or comments, and it will be preserved on regeneration
146
- 

Return to bug 11844