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

(-)a/Koha/Schema/Result/Borrower.pm (-2 / +16 lines)
Lines 407-412 __PACKAGE__->table("borrowers"); Link Here
407
  default_value: 0
407
  default_value: 0
408
  is_nullable: 0
408
  is_nullable: 0
409
409
410
=head2 checkprevcheckout
411
412
  data_type: 'varchar'
413
  default_value: 'inherit'
414
  is_nullable: 0
415
  size: 7
416
410
=head2 updated_on
417
=head2 updated_on
411
418
412
  data_type: 'timestamp'
419
  data_type: 'timestamp'
Lines 583-588 __PACKAGE__->add_columns( Link Here
583
  { data_type => "integer", default_value => 1, is_nullable => 0 },
590
  { data_type => "integer", default_value => 1, is_nullable => 0 },
584
  "privacy_guarantor_checkouts",
591
  "privacy_guarantor_checkouts",
585
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
592
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
593
  "checkprevcheckout",
594
  {
595
    data_type => "varchar",
596
    default_value => "inherit",
597
    is_nullable => 0,
598
    size => 7,
599
  },
586
  "updated_on",
600
  "updated_on",
587
  {
601
  {
588
    data_type => "timestamp",
602
    data_type => "timestamp",
Lines 1218-1225 Composing rels: L</aqorder_users> -> ordernumber Link Here
1218
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1232
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1219
1233
1220
1234
1221
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-06-14 16:35:12
1235
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-07-04 17:36:29
1222
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Luq1YVrOwtdDvSDWgWNGUg
1236
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0RuwTMzB5epoBGGCOcTHwg
1223
1237
1224
__PACKAGE__->belongs_to(
1238
__PACKAGE__->belongs_to(
1225
    "guarantor",
1239
    "guarantor",
(-)a/Koha/Schema/Result/Category.pm (-2 / +16 lines)
Lines 116-121 __PACKAGE__->table("categories"); Link Here
116
  extra: {list => ["default","never","forever"]}
116
  extra: {list => ["default","never","forever"]}
117
  is_nullable: 0
117
  is_nullable: 0
118
118
119
=head2 checkprevcheckout
120
121
  data_type: 'varchar'
122
  default_value: 'inherit'
123
  is_nullable: 0
124
  size: 7
125
119
=cut
126
=cut
120
127
121
__PACKAGE__->add_columns(
128
__PACKAGE__->add_columns(
Lines 161-166 __PACKAGE__->add_columns( Link Here
161
    extra => { list => ["default", "never", "forever"] },
168
    extra => { list => ["default", "never", "forever"] },
162
    is_nullable => 0,
169
    is_nullable => 0,
163
  },
170
  },
171
  "checkprevcheckout",
172
  {
173
    data_type => "varchar",
174
    default_value => "inherit",
175
    is_nullable => 0,
176
    size => 7,
177
  },
164
);
178
);
165
179
166
=head1 PRIMARY KEY
180
=head1 PRIMARY KEY
Lines 253-260 __PACKAGE__->might_have( Link Here
253
);
267
);
254
268
255
269
256
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-08-18 13:01:05
270
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-07-04 17:36:29
257
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:T4i7vp1kAZFXy6DiV1dqyw
271
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+aqNsJpVxnE5y3GwsnPAUA
258
272
259
273
260
# You can replace this text with custom content, and it will be preserved on regeneration
274
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Deletedborrower.pm (-3 / +16 lines)
Lines 404-409 __PACKAGE__->table("deletedborrowers"); Link Here
404
  default_value: 0
404
  default_value: 0
405
  is_nullable: 0
405
  is_nullable: 0
406
406
407
=head2 checkprevcheckout
408
409
  data_type: 'varchar'
410
  default_value: 'inherit'
411
  is_nullable: 0
412
  size: 7
413
407
=head2 updated_on
414
=head2 updated_on
408
415
409
  data_type: 'timestamp'
416
  data_type: 'timestamp'
Lines 568-573 __PACKAGE__->add_columns( Link Here
568
  { data_type => "integer", default_value => 1, is_nullable => 0 },
575
  { data_type => "integer", default_value => 1, is_nullable => 0 },
569
  "privacy_guarantor_checkouts",
576
  "privacy_guarantor_checkouts",
570
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
577
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
578
  "checkprevcheckout",
579
  {
580
    data_type => "varchar",
581
    default_value => "inherit",
582
    is_nullable => 0,
583
    size => 7,
584
  },
571
  "updated_on",
585
  "updated_on",
572
  {
586
  {
573
    data_type => "timestamp",
587
    data_type => "timestamp",
Lines 578-585 __PACKAGE__->add_columns( Link Here
578
);
592
);
579
593
580
594
581
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-06-14 16:35:12
595
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-07-04 17:36:29
582
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wmWyqDcbofgVoIbvRy7j6w
596
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:NTzyvJODsmzRa91vTeCVcQ
583
597
584
598
585
# You can replace this text with custom code or comments, and it will be preserved on regeneration
599
# You can replace this text with custom code or comments, and it will be preserved on regeneration
586
- 

Return to bug 6906