View | Details | Raw Unified | Return to bug 18316
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 weight
57
58
  data_type: 'decimal'
59
  is_nullable: 1
60
  size: [5,2]
61
56
=cut
62
=cut
57
63
58
__PACKAGE__->add_columns(
64
__PACKAGE__->add_columns(
Lines 70-75 __PACKAGE__->add_columns( Link Here
70
    },
76
    },
71
    is_nullable => 0,
77
    is_nullable => 0,
72
  },
78
  },
79
  "weight",
80
  { data_type => "decimal", is_nullable => 1, size => [5, 2] },
73
);
81
);
74
82
75
=head1 PRIMARY KEY
83
=head1 PRIMARY KEY
Lines 116-123 __PACKAGE__->has_many( Link Here
116
);
124
);
117
125
118
126
119
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-05-09 12:50:58
127
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-05-23 13:34:49
120
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:NDRiXH19vBOhrMoyJqVTGQ
128
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wB00F2omQ2QadnIxg8keIQ
121
129
122
__PACKAGE__->many_to_many("search_marc_maps", "search_marc_to_fields", "search_marc_map");
130
__PACKAGE__->many_to_many("search_marc_maps", "search_marc_to_fields", "search_marc_map");
123
131
124
- 

Return to bug 18316