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

(-)a/Koha/Schema/Result/SearchMarcToField.pm (-3 / +13 lines)
Lines 29-34 __PACKAGE__->table("search_marc_to_field"); Link Here
29
  default_value: 1
29
  default_value: 1
30
  is_nullable: 0
30
  is_nullable: 0
31
31
32
=head2 filter
33
34
  data_type: 'varchar'
35
  default_value: (empty string)
36
  is_nullable: 0
37
  size: 100
38
39
specify a filter to be applied to field
40
32
=head2 search_marc_map_id
41
=head2 search_marc_map_id
33
42
34
  data_type: 'integer'
43
  data_type: 'integer'
Lines 70-75 Sort defaults to 1 (Yes) and creates sort fields in the index, 0 (no) will preve Link Here
70
__PACKAGE__->add_columns(
79
__PACKAGE__->add_columns(
71
  "search",
80
  "search",
72
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
81
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
82
  "filter",
83
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 100 },
73
  "search_marc_map_id",
84
  "search_marc_map_id",
74
  { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
85
  { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
75
  "search_field_id",
86
  "search_field_id",
Lines 129-136 __PACKAGE__->belongs_to( Link Here
129
);
140
);
130
141
131
142
132
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-04-21 12:39:23
143
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-09-01 12:27:10
133
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:F/uoQ4AbA16vTZJAGm3WuQ
144
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:L8zfeNnx7Js5MfMHX7UdyQ
134
145
135
__PACKAGE__->add_columns(
146
__PACKAGE__->add_columns(
136
    '+facet' => { is_boolean => 1 },
147
    '+facet' => { is_boolean => 1 },
137
- 

Return to bug 27153