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.07051 @ 2024-08-23 15:47:56
176
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-10-28 17:12:49
167
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8ZpUf0l+6h44AHDf7eV/1g
177
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LnfM6m79gYySVBxAr9UJAg
168
178
169
__PACKAGE__->add_columns(
179
__PACKAGE__->add_columns(
170
    '+repeatable' => { is_boolean => 1 },
180
    '+repeatable' => { is_boolean => 1 },
171
- 

Return to bug 35625