Lines 23-34
__PACKAGE__->table("search_marc_to_field");
Link Here
|
23 |
|
23 |
|
24 |
=head1 ACCESSORS |
24 |
=head1 ACCESSORS |
25 |
|
25 |
|
26 |
=head2 search |
|
|
27 |
|
28 |
data_type: 'tinyint' |
29 |
default_value: 1 |
30 |
is_nullable: 0 |
31 |
|
32 |
=head2 search_marc_map_id |
26 |
=head2 search_marc_map_id |
33 |
|
27 |
|
34 |
data_type: 'integer' |
28 |
data_type: 'integer' |
Lines 64-74
true if this field can be used to generate suggestions for browse
Link Here
|
64 |
|
58 |
|
65 |
true/false creates special sort handling, null doesn't |
59 |
true/false creates special sort handling, null doesn't |
66 |
|
60 |
|
|
|
61 |
=head2 search |
62 |
|
63 |
data_type: 'tinyint' |
64 |
default_value: 1 |
65 |
is_nullable: 0 |
66 |
|
67 |
=cut |
67 |
=cut |
68 |
|
68 |
|
69 |
__PACKAGE__->add_columns( |
69 |
__PACKAGE__->add_columns( |
70 |
"search", |
|
|
71 |
{ data_type => "tinyint", default_value => 1, is_nullable => 0 }, |
72 |
"search_marc_map_id", |
70 |
"search_marc_map_id", |
73 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, |
71 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, |
74 |
"search_field_id", |
72 |
"search_field_id", |
Lines 79-84
__PACKAGE__->add_columns(
Link Here
|
79 |
{ data_type => "tinyint", default_value => 0, is_nullable => 1 }, |
77 |
{ data_type => "tinyint", default_value => 0, is_nullable => 1 }, |
80 |
"sort", |
78 |
"sort", |
81 |
{ data_type => "tinyint", is_nullable => 1 }, |
79 |
{ data_type => "tinyint", is_nullable => 1 }, |
|
|
80 |
"search", |
81 |
{ data_type => "tinyint", default_value => 1, is_nullable => 0 }, |
82 |
); |
82 |
); |
83 |
|
83 |
|
84 |
=head1 PRIMARY KEY |
84 |
=head1 PRIMARY KEY |
Lines 128-135
__PACKAGE__->belongs_to(
Link Here
|
128 |
); |
128 |
); |
129 |
|
129 |
|
130 |
|
130 |
|
131 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-02 12:47:22 |
131 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2020-01-10 16:02:56 |
132 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9mqZ/zrii+Fv+k+eQNHYUw |
132 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QBWMT6sHJw3YfpT+VxIu6g |
133 |
|
133 |
|
134 |
|
134 |
|
135 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
135 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
136 |
- |
|
|