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

(-)a/Koha/Schema/Result/AuthSubfieldStructure.pm (-2 / +10 lines)
Lines 130-135 __PACKAGE__->table("auth_subfield_structure"); Link Here
130
  data_type: 'mediumtext'
130
  data_type: 'mediumtext'
131
  is_nullable: 1
131
  is_nullable: 1
132
132
133
=head2 display_order
134
135
  data_type: 'integer'
136
  default_value: 0
137
  is_nullable: 0
138
133
=cut
139
=cut
134
140
135
__PACKAGE__->add_columns(
141
__PACKAGE__->add_columns(
Lines 173-178 __PACKAGE__->add_columns( Link Here
173
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
179
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
174
  "defaultvalue",
180
  "defaultvalue",
175
  { data_type => "mediumtext", is_nullable => 1 },
181
  { data_type => "mediumtext", is_nullable => 1 },
182
  "display_order",
183
  { data_type => "integer", default_value => 0, is_nullable => 0 },
176
);
184
);
177
185
178
=head1 PRIMARY KEY
186
=head1 PRIMARY KEY
Lines 209-216 __PACKAGE__->belongs_to( Link Here
209
);
217
);
210
218
211
219
212
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53
220
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2020-12-10 09:06:23
213
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5Prv/DCQk32mTQaqtYhUuA
221
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QaSzsLBl3m/n+8u8nXuOeQ
214
222
215
sub koha_object_class {
223
sub koha_object_class {
216
    'Koha::Authority::Subfield';
224
    'Koha::Authority::Subfield';
(-)a/Koha/Schema/Result/MarcSubfieldStructure.pm (-3 / +10 lines)
Lines 140-145 __PACKAGE__->table("marc_subfield_structure"); Link Here
140
  default_value: 9999
140
  default_value: 9999
141
  is_nullable: 0
141
  is_nullable: 0
142
142
143
=head2 display_order
144
145
  data_type: 'integer'
146
  default_value: 0
147
  is_nullable: 0
148
143
=cut
149
=cut
144
150
145
__PACKAGE__->add_columns(
151
__PACKAGE__->add_columns(
Lines 181-186 __PACKAGE__->add_columns( Link Here
181
  { data_type => "mediumtext", is_nullable => 1 },
187
  { data_type => "mediumtext", is_nullable => 1 },
182
  "maxlength",
188
  "maxlength",
183
  { data_type => "integer", default_value => 9999, is_nullable => 0 },
189
  { data_type => "integer", default_value => 9999, is_nullable => 0 },
190
  "display_order",
191
  { data_type => "integer", default_value => 0, is_nullable => 0 },
184
);
192
);
185
193
186
=head1 PRIMARY KEY
194
=head1 PRIMARY KEY
Lines 222-229 __PACKAGE__->belongs_to( Link Here
222
);
230
);
223
231
224
232
225
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-11 14:36:42
233
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2020-12-10 09:06:23
226
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lCe1ZenRM/9rXnRHXhDuSw
234
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KVbDXEVf96eDkbPYpcmQVA
227
235
228
236
229
# You can replace this text with custom content, and it will be preserved on regeneration
237
# You can replace this text with custom content, and it will be preserved on regeneration
230
- 

Return to bug 8976