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

(-)a/Koha/Schema/Result/SearchField.pm (-5 / +6 lines)
Lines 48-54 the human readable name of the field, for display Link Here
48
=head2 type
48
=head2 type
49
49
50
  data_type: 'enum'
50
  data_type: 'enum'
51
  extra: {list => ["","string","date","number","boolean","sum"]}
51
  extra: {list => ["","string","date","number","boolean","sum","isbn","stdno"]}
52
  is_nullable: 0
52
  is_nullable: 0
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
Lines 65-71 __PACKAGE__->add_columns( Link Here
65
  "type",
65
  "type",
66
  {
66
  {
67
    data_type => "enum",
67
    data_type => "enum",
68
    extra => { list => ["", "string", "date", "number", "boolean", "sum"] },
68
    extra => {
69
      list => ["", "string", "date", "number", "boolean", "sum", "isbn", "stdno"],
70
    },
69
    is_nullable => 0,
71
    is_nullable => 0,
70
  },
72
  },
71
);
73
);
Lines 114-121 __PACKAGE__->has_many( Link Here
114
);
116
);
115
117
116
118
117
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-03-23 13:30:43
119
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-05-09 12:50:58
118
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1IenQWmCO16tJ/nIFTFYug
120
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:NDRiXH19vBOhrMoyJqVTGQ
119
121
120
__PACKAGE__->many_to_many("search_marc_maps", "search_marc_to_fields", "search_marc_map");
122
__PACKAGE__->many_to_many("search_marc_maps", "search_marc_to_fields", "search_marc_map");
121
123
122
- 

Return to bug 20746