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

(-)a/Koha/Schema/Result/SearchField.pm (-3 / +10 lines)
Lines 53-58 the human readable name of the field, for display Link Here
53
53
54
what type of data this holds, relevant when storing it in the search engine
54
what type of data this holds, relevant when storing it in the search engine
55
55
56
=head2 facet_order
57
58
  data_type: 'tinyint'
59
  default_value: 0
60
  is_nullable: 1
61
56
=cut
62
=cut
57
63
58
__PACKAGE__->add_columns(
64
__PACKAGE__->add_columns(
Lines 68-73 __PACKAGE__->add_columns( Link Here
68
    extra => { list => ["", "string", "date", "number", "boolean", "sum"] },
74
    extra => { list => ["", "string", "date", "number", "boolean", "sum"] },
69
    is_nullable => 0,
75
    is_nullable => 0,
70
  },
76
  },
77
  "facet_order",
78
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
71
);
79
);
72
80
73
=head1 PRIMARY KEY
81
=head1 PRIMARY KEY
Lines 114-121 __PACKAGE__->has_many( Link Here
114
);
122
);
115
123
116
124
117
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-03-23 13:30:43
125
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-06-30 10:26:00
118
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1IenQWmCO16tJ/nIFTFYug
126
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0f8VeusKpolVCRHLvQKhnA
119
127
120
__PACKAGE__->many_to_many("search_marc_maps", "search_marc_to_fields", "search_marc_map");
128
__PACKAGE__->many_to_many("search_marc_maps", "search_marc_to_fields", "search_marc_map");
121
129
122
- 

Return to bug 18235