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

(-)a/Koha/Schema/Result/AuthorisedValueCategory.pm (-4 / +12 lines)
Lines 36-41 __PACKAGE__->table("authorised_value_categories"); Link Here
36
  default_value: 0
36
  default_value: 0
37
  is_nullable: 1
37
  is_nullable: 1
38
38
39
=head2 is_integer_only
40
41
  data_type: 'tinyint'
42
  default_value: 0
43
  is_nullable: 0
44
39
=cut
45
=cut
40
46
41
__PACKAGE__->add_columns(
47
__PACKAGE__->add_columns(
Lines 43-48 __PACKAGE__->add_columns( Link Here
43
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 32 },
49
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 32 },
44
  "is_system",
50
  "is_system",
45
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
51
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
52
  "is_integer_only",
53
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
46
);
54
);
47
55
48
=head1 PRIMARY KEY
56
=head1 PRIMARY KEY
Lines 105-115 __PACKAGE__->has_many( Link Here
105
);
113
);
106
114
107
115
108
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-04-28 09:07:15
116
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-01-29 10:43:30
109
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EfBQNJN5wgpFPlWVP4U+qw
117
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qVFHGnJp7VL2eUR5ZFZvAQ
110
118
111
__PACKAGE__->add_columns(
119
__PACKAGE__->add_columns(
112
    '+is_system' => { is_boolean => 1 },
120
    '+is_system'       => { is_boolean => 1 },
121
    '+is_integer_only' => { is_boolean => 1 },
113
);
122
);
114
123
115
sub koha_objects_class {
124
sub koha_objects_class {
116
- 

Return to bug 28869