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

(-)a/Koha/Schema/Result/Issue.pm (-2 / +28 lines)
Lines 95-100 __PACKAGE__->table("issues"); Link Here
95
  default_value: 0
95
  default_value: 0
96
  is_nullable: 0
96
  is_nullable: 0
97
97
98
=head2 note
99
100
  data_type: 'mediumtext'
101
  is_nullable: 1
102
103
=head2 notedate
104
105
  data_type: 'datetime'
106
  datetime_undef_if_invalid: 1
107
  is_nullable: 1
108
109
=head2 noteseen
110
111
  data_type: 'integer'
112
  is_nullable: 1
113
98
=cut
114
=cut
99
115
100
__PACKAGE__->add_columns(
116
__PACKAGE__->add_columns(
Lines 143-148 __PACKAGE__->add_columns( Link Here
143
  },
159
  },
144
  "onsite_checkout",
160
  "onsite_checkout",
145
  { data_type => "integer", default_value => 0, is_nullable => 0 },
161
  { data_type => "integer", default_value => 0, is_nullable => 0 },
162
  "note",
163
  { data_type => "mediumtext", is_nullable => 1 },
164
  "notedate",
165
  {
166
    data_type => "datetime",
167
    datetime_undef_if_invalid => 1,
168
    is_nullable => 1,
169
  },
170
  "noteseen",
171
  { data_type => "integer", is_nullable => 1 },
146
);
172
);
147
173
148
=head1 PRIMARY KEY
174
=head1 PRIMARY KEY
Lines 214-221 __PACKAGE__->belongs_to( Link Here
214
);
240
);
215
241
216
242
217
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-03-07 14:25:37
243
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-04-20 13:44:33
218
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8jFZATc7tlK4Qb5YW8yrrw
244
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qs+tM2Y0trdB3Affbcg5sg
219
245
220
__PACKAGE__->belongs_to(
246
__PACKAGE__->belongs_to(
221
    "borrower",
247
    "borrower",
(-)a/Koha/Schema/Result/OldIssue.pm (-3 / +28 lines)
Lines 94-99 __PACKAGE__->table("old_issues"); Link Here
94
  default_value: 0
94
  default_value: 0
95
  is_nullable: 0
95
  is_nullable: 0
96
96
97
=head2 note
98
99
  data_type: 'mediumtext'
100
  is_nullable: 1
101
102
=head2 notedate
103
104
  data_type: 'datetime'
105
  datetime_undef_if_invalid: 1
106
  is_nullable: 1
107
108
=head2 noteseen
109
110
  data_type: 'integer'
111
  is_nullable: 1
112
97
=cut
113
=cut
98
114
99
__PACKAGE__->add_columns(
115
__PACKAGE__->add_columns(
Lines 142-147 __PACKAGE__->add_columns( Link Here
142
  },
158
  },
143
  "onsite_checkout",
159
  "onsite_checkout",
144
  { data_type => "integer", default_value => 0, is_nullable => 0 },
160
  { data_type => "integer", default_value => 0, is_nullable => 0 },
161
  "note",
162
  { data_type => "mediumtext", is_nullable => 1 },
163
  "notedate",
164
  {
165
    data_type => "datetime",
166
    datetime_undef_if_invalid => 1,
167
    is_nullable => 1,
168
  },
169
  "noteseen",
170
  { data_type => "integer", is_nullable => 1 },
145
);
171
);
146
172
147
=head1 PRIMARY KEY
173
=head1 PRIMARY KEY
Lines 199-206 __PACKAGE__->belongs_to( Link Here
199
);
225
);
200
226
201
227
202
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-03-07 14:25:37
228
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-04-20 13:44:33
203
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Nqm7crVG/Y5G3kuLAAKdSQ
229
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3ZaqChwtBW1oU0gMY40XJw
204
230
205
sub koha_objects_class {
231
sub koha_objects_class {
206
    'Koha::Old::Checkouts';
232
    'Koha::Old::Checkouts';
207
- 

Return to bug 14224