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

(-)a/Koha/Schema/Result/SearchField.pm (-1 / +8 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
76
- 

Return to bug 18316