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

(-)a/Koha/Schema/Result/AuthorisedValueCategory.pm (-3 / +10 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 parent
40
41
  data_type: 'varchar'
42
  is_nullable: 1
43
  size: 32
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
  "parent",
53
  { data_type => "varchar", is_nullable => 1, size => 32 },
46
);
54
);
47
55
48
=head1 PRIMARY KEY
56
=head1 PRIMARY KEY
Lines 105-112 __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-02-21 22:36:15
109
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EfBQNJN5wgpFPlWVP4U+qw
117
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:L8WQJrR2WDDHewbcbvLGNg
110
118
111
__PACKAGE__->add_columns(
119
__PACKAGE__->add_columns(
112
    '+is_system' => { is_boolean => 1 },
120
    '+is_system' => { is_boolean => 1 },
113
- 

Return to bug 35067