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

(-)a/Koha/Schema/Result/Issue.pm (-7 / +13 lines)
Lines 96-105 __PACKAGE__->table("issues"); Link Here
96
  datetime_undef_if_invalid: 1
96
  datetime_undef_if_invalid: 1
97
  is_nullable: 1
97
  is_nullable: 1
98
98
99
=head2 onsite_checkout
99
=head2 checkout_type
100
100
101
  data_type: 'integer'
101
  data_type: 'enum'
102
  default_value: 0
102
  default_value: 'CHECKOUT'
103
  extra: {list => ["CHECKOUT","ONSITE"]}
103
  is_nullable: 0
104
  is_nullable: 0
104
105
105
=head2 note
106
=head2 note
Lines 166-173 __PACKAGE__->add_columns( Link Here
166
    datetime_undef_if_invalid => 1,
167
    datetime_undef_if_invalid => 1,
167
    is_nullable => 1,
168
    is_nullable => 1,
168
  },
169
  },
169
  "onsite_checkout",
170
  "checkout_type",
170
  { data_type => "integer", default_value => 0, is_nullable => 0 },
171
  {
172
    data_type => "enum",
173
    default_value => "CHECKOUT",
174
    extra => { list => ["CHECKOUT", "ONSITE"] },
175
    is_nullable => 0,
176
  },
171
  "note",
177
  "note",
172
  { data_type => "longtext", is_nullable => 1 },
178
  { data_type => "longtext", is_nullable => 1 },
173
  "notedate",
179
  "notedate",
Lines 264-271 __PACKAGE__->might_have( Link Here
264
);
270
);
265
271
266
272
267
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-31 12:18:38
273
# Created by DBIx::Class::Schema::Loader v0.07048 @ 2020-04-09 19:47:02
268
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QVmFa5b0Pe5OhUI92n9kzQ
274
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GIV9oEe2GeiJ/zIg2kZlwA
269
275
270
__PACKAGE__->add_columns(
276
__PACKAGE__->add_columns(
271
    '+auto_renew'      => { is_boolean => 1 },
277
    '+auto_renew'      => { is_boolean => 1 },
(-)a/Koha/Schema/Result/OldIssue.pm (-8 / +13 lines)
Lines 95-104 __PACKAGE__->table("old_issues"); Link Here
95
  datetime_undef_if_invalid: 1
95
  datetime_undef_if_invalid: 1
96
  is_nullable: 1
96
  is_nullable: 1
97
97
98
=head2 onsite_checkout
98
=head2 checkout_type
99
99
100
  data_type: 'integer'
100
  data_type: 'enum'
101
  default_value: 0
101
  default_value: 'CHECKOUT'
102
  extra: {list => ["CHECKOUT","ONSITE"]}
102
  is_nullable: 0
103
  is_nullable: 0
103
104
104
=head2 note
105
=head2 note
Lines 165-172 __PACKAGE__->add_columns( Link Here
165
    datetime_undef_if_invalid => 1,
166
    datetime_undef_if_invalid => 1,
166
    is_nullable => 1,
167
    is_nullable => 1,
167
  },
168
  },
168
  "onsite_checkout",
169
  "checkout_type",
169
  { data_type => "integer", default_value => 0, is_nullable => 0 },
170
  {
171
    data_type => "enum",
172
    default_value => "CHECKOUT",
173
    extra => { list => ["CHECKOUT", "ONSITE"] },
174
    is_nullable => 0,
175
  },
170
  "note",
176
  "note",
171
  { data_type => "longtext", is_nullable => 1 },
177
  { data_type => "longtext", is_nullable => 1 },
172
  "notedate",
178
  "notedate",
Lines 234-241 __PACKAGE__->belongs_to( Link Here
234
);
240
);
235
241
236
242
237
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-04-10 19:55:44
243
# Created by DBIx::Class::Schema::Loader v0.07048 @ 2020-04-09 19:47:02
238
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:E2N2paWcCHg916100ry+2A
244
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:J7jzh/kOsynQr52uSGxQ/A
239
245
240
__PACKAGE__->add_columns(
246
__PACKAGE__->add_columns(
241
    '+auto_renew'      => { is_boolean => 1 },
247
    '+auto_renew'      => { is_boolean => 1 },
242
- 

Return to bug 25037