Bug 30498: Corresponding DBIx change for SearchField

No test plan.

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Victor Grousset/tuxayo <victor@tuxayo.net>
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
This commit is contained in:
Marcel de Rooy 2022-04-08 09:37:59 +00:00 committed by Fridolin Somers
parent 045b467858
commit 2fe5eb4652

View file

@ -48,7 +48,7 @@ the human readable name of the field, for display
=head2 type
data_type: 'enum'
extra: {list => ["","string","date","number","boolean","sum","isbn","stdno"]}
extra: {list => ["","string","date","number","boolean","sum","isbn","stdno","year"]}
is_nullable: 0
what type of data this holds, relevant when storing it in the search engine
@ -98,7 +98,17 @@ __PACKAGE__->add_columns(
{
data_type => "enum",
extra => {
list => ["", "string", "date", "number", "boolean", "sum", "isbn", "stdno"],
list => [
"",
"string",
"date",
"number",
"boolean",
"sum",
"isbn",
"stdno",
"year",
],
},
is_nullable => 0,
},
@ -158,8 +168,8 @@ __PACKAGE__->has_many(
);
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-10-16 14:32:53
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:HBEJWxqos7/LzD/QzTi45Q
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-04-08 09:37:38
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:iWmUtCXEzX6vilFP9jdojA
__PACKAGE__->add_columns(
'+mandatory' => { is_boolean => 1 },