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

(-)a/Koha/Schema/Result/OldReserve.pm (-10 / +2 lines)
Lines 46-57 __PACKAGE__->table("old_reserves"); Link Here
46
  is_foreign_key: 1
46
  is_foreign_key: 1
47
  is_nullable: 1
47
  is_nullable: 1
48
48
49
=head2 constrainttype
50
51
  data_type: 'varchar'
52
  is_nullable: 1
53
  size: 1
54
55
=head2 branchcode
49
=head2 branchcode
56
50
57
  data_type: 'varchar'
51
  data_type: 'varchar'
Lines 146-153 __PACKAGE__->add_columns( Link Here
146
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
140
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
147
  "biblionumber",
141
  "biblionumber",
148
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
142
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
149
  "constrainttype",
150
  { data_type => "varchar", is_nullable => 1, size => 1 },
151
  "branchcode",
143
  "branchcode",
152
  { data_type => "varchar", is_nullable => 1, size => 10 },
144
  { data_type => "varchar", is_nullable => 1, size => 10 },
153
  "notificationdate",
145
  "notificationdate",
Lines 262-269 __PACKAGE__->belongs_to( Link Here
262
);
254
);
263
255
264
256
265
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-08-18 13:01:05
257
# Created by DBIx::Class::Schema::Loader v0.07040 @ 2015-06-30 08:51:40
266
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:bCHe3BGidrVm0LIlC6h+ow
258
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wGi7SO5Sz+IwuvqaAyQDbg
267
259
268
260
269
# You can replace this text with custom content, and it will be preserved on regeneration
261
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Reserve.pm (-11 / +2 lines)
Lines 49-60 __PACKAGE__->table("reserves"); Link Here
49
  is_foreign_key: 1
49
  is_foreign_key: 1
50
  is_nullable: 0
50
  is_nullable: 0
51
51
52
=head2 constrainttype
53
54
  data_type: 'varchar'
55
  is_nullable: 1
56
  size: 1
57
58
=head2 branchcode
52
=head2 branchcode
59
53
60
  data_type: 'varchar'
54
  data_type: 'varchar'
Lines 160-167 __PACKAGE__->add_columns( Link Here
160
    is_foreign_key => 1,
154
    is_foreign_key => 1,
161
    is_nullable    => 0,
155
    is_nullable    => 0,
162
  },
156
  },
163
  "constrainttype",
164
  { data_type => "varchar", is_nullable => 1, size => 1 },
165
  "branchcode",
157
  "branchcode",
166
  { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 },
158
  { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 },
167
  "notificationdate",
159
  "notificationdate",
Lines 286-293 __PACKAGE__->belongs_to( Link Here
286
);
278
);
287
279
288
280
289
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-08-18 13:01:05
281
# Created by DBIx::Class::Schema::Loader v0.07040 @ 2015-06-30 08:51:40
290
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jzng9D1Pns0I2PUF7Wssiw
282
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:uHHqseJ56g3nDyKnNncyUA
291
283
292
__PACKAGE__->belongs_to(
284
__PACKAGE__->belongs_to(
293
  "item",
285
  "item",
294
- 

Return to bug 9809