|
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"]} |
| 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 => { list => ["", "string", "date", "number", "boolean", "sum"] }, |
| 69 |
is_nullable => 0, |
69 |
is_nullable => 0, |
| 70 |
}, |
70 |
}, |
| 71 |
); |
71 |
); |
|
Lines 114-121
__PACKAGE__->has_many(
Link Here
|
| 114 |
); |
114 |
); |
| 115 |
|
115 |
|
| 116 |
|
116 |
|
| 117 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-10-12 16:41:47 |
117 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-03-17 11:41:40 |
| 118 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4MJO9216VF37w7PlWCcBKg |
118 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:VxltkYAqLdc89K4p7j7n5Q |
| 119 |
|
119 |
|
| 120 |
__PACKAGE__->many_to_many("search_marc_maps", "search_marc_to_fields", "search_marc_map"); |
120 |
__PACKAGE__->many_to_many("search_marc_maps", "search_marc_to_fields", "search_marc_map"); |
| 121 |
|
121 |
|