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

(-)a/Koha/Schema/Result/Issue.pm (-2 / +10 lines)
Lines 95-100 __PACKAGE__->table("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
99
100
  data_type: 'integer'
101
  default_value: 0
102
  is_nullable: 0
103
98
=cut
104
=cut
99
105
100
__PACKAGE__->add_columns(
106
__PACKAGE__->add_columns(
Lines 143-148 __PACKAGE__->add_columns( Link Here
143
    datetime_undef_if_invalid => 1,
149
    datetime_undef_if_invalid => 1,
144
    is_nullable => 1,
150
    is_nullable => 1,
145
  },
151
  },
152
  "onsite_checkout",
153
  { data_type => "integer", default_value => 0, is_nullable => 0 },
146
);
154
);
147
155
148
=head1 RELATIONS
156
=head1 RELATIONS
Lines 188-195 __PACKAGE__->belongs_to( Link Here
188
);
196
);
189
197
190
198
191
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-09-17 21:06:58
199
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-11-03 10:40:55
192
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vhnsyH2GOjEEjOWjCS5Lpw
200
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7Y+5IerDnajn5GLwAY5thg
193
201
194
__PACKAGE__->belongs_to(
202
__PACKAGE__->belongs_to(
195
    "borrower",
203
    "borrower",
(-)a/Koha/Schema/Result/OldIssue.pm (-3 / +10 lines)
Lines 95-100 __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
99
100
  data_type: 'integer'
101
  default_value: 0
102
  is_nullable: 0
103
98
=cut
104
=cut
99
105
100
__PACKAGE__->add_columns(
106
__PACKAGE__->add_columns(
Lines 143-148 __PACKAGE__->add_columns( Link Here
143
    datetime_undef_if_invalid => 1,
149
    datetime_undef_if_invalid => 1,
144
    is_nullable => 1,
150
    is_nullable => 1,
145
  },
151
  },
152
  "onsite_checkout",
153
  { data_type => "integer", default_value => 0, is_nullable => 0 },
146
);
154
);
147
155
148
=head1 RELATIONS
156
=head1 RELATIONS
Lines 188-195 __PACKAGE__->belongs_to( Link Here
188
);
196
);
189
197
190
198
191
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-09-17 21:06:58
199
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-11-03 10:40:55
192
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/ofcOgd+0YhWqMTWEDdaCw
200
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lNB9CDFcwG4DjD0pl14mvQ
193
201
194
202
195
# You can replace this text with custom content, and it will be preserved on regeneration
203
# You can replace this text with custom content, and it will be preserved on regeneration
196
- 

Return to bug 10860