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

(-)a/Koha/Schema/Result/AuthorisedValue.pm (-7 / +6 lines)
Lines 54-60 code use to identify the authorized value Link Here
54
54
55
  data_type: 'varchar'
55
  data_type: 'varchar'
56
  is_nullable: 1
56
  is_nullable: 1
57
  size: 200
57
  size: 400
58
58
59
authorized value description as printed in the staff interface
59
authorized value description as printed in the staff interface
60
60
Lines 62-68 authorized value description as printed in the staff interface Link Here
62
62
63
  data_type: 'varchar'
63
  data_type: 'varchar'
64
  is_nullable: 1
64
  is_nullable: 1
65
  size: 200
65
  size: 400
66
66
67
authorized value description as printed in the OPAC
67
authorized value description as printed in the OPAC
68
68
Lines 90-98 __PACKAGE__->add_columns( Link Here
90
  "authorised_value",
90
  "authorised_value",
91
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 80 },
91
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 80 },
92
  "lib",
92
  "lib",
93
  { data_type => "varchar", is_nullable => 1, size => 200 },
93
  { data_type => "varchar", is_nullable => 1, size => 400 },
94
  "lib_opac",
94
  "lib_opac",
95
  { data_type => "varchar", is_nullable => 1, size => 200 },
95
  { data_type => "varchar", is_nullable => 1, size => 400 },
96
  "imageurl",
96
  "imageurl",
97
  { data_type => "varchar", is_nullable => 1, size => 200 },
97
  { data_type => "varchar", is_nullable => 1, size => 200 },
98
);
98
);
Lines 173-180 __PACKAGE__->has_many( Link Here
173
);
173
);
174
174
175
175
176
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
176
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-02-22 22:25:23
177
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LH9dpEEzlVVsjNVv/jnONg
177
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1PdeJvOnrB/+QfoP6mZ/hA
178
178
179
179
180
# You can replace this text with custom code or comments, and it will be preserved on regeneration
180
# You can replace this text with custom code or comments, and it will be preserved on regeneration
181
- 

Return to bug 36153