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

(-)a/Koha/Schema/Result/AuthorisedValueCategory.pm (-3 / +10 lines)
Lines 30-40 __PACKAGE__->table("authorised_value_categories"); Link Here
30
  is_nullable: 0
30
  is_nullable: 0
31
  size: 32
31
  size: 32
32
32
33
=head2 is_system
34
35
  data_type: 'tinyint'
36
  default_value: 0
37
  is_nullable: 1
38
33
=cut
39
=cut
34
40
35
__PACKAGE__->add_columns(
41
__PACKAGE__->add_columns(
36
  "category_name",
42
  "category_name",
37
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 32 },
43
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 32 },
44
  "is_system",
45
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
38
);
46
);
39
47
40
=head1 PRIMARY KEY
48
=head1 PRIMARY KEY
Lines 97-104 __PACKAGE__->has_many( Link Here
97
);
105
);
98
106
99
107
100
# Created by DBIx::Class::Schema::Loader v0.07045 @ 2016-08-30 11:59:31
108
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-04-28 09:07:15
101
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6vToj9pUcIv8Jio38rNE4g
109
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EfBQNJN5wgpFPlWVP4U+qw
102
110
103
sub koha_objects_class {
111
sub koha_objects_class {
104
    'Koha::AuthorisedValueCategories';
112
    'Koha::AuthorisedValueCategories';
105
- 

Return to bug 17355