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

(-)a/Koha/Schema/Result/AdditionalField.pm (-3 / +12 lines)
Lines 40-45 primary key identifier Link Here
40
40
41
tablename of the new field
41
tablename of the new field
42
42
43
=head2 is_system
44
45
  data_type: 'tinyint'
46
  default_value: 0
47
  is_nullable: 0
48
49
is this field required for system operation
50
43
=head2 name
51
=head2 name
44
52
45
  data_type: 'varchar'
53
  data_type: 'varchar'
Lines 98-103 __PACKAGE__->add_columns( Link Here
98
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
106
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
99
  "tablename",
107
  "tablename",
100
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
108
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
109
  "is_system",
110
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
101
  "name",
111
  "name",
102
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
112
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
103
  "authorised_value_category",
113
  "authorised_value_category",
Lines 163-170 __PACKAGE__->has_many( Link Here
163
);
173
);
164
174
165
175
166
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-11-03 17:19:32
176
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-12-21 09:19:49
167
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fnWeynuQnePWYM90CJKZ5Q
177
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:zaNlZ+DHrKbHEALlQbOh8w
168
178
169
179
170
# 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
171
- 

Return to bug 35625