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

(-)a/Koha/Schema/Result/Borrower.pm (-38 / +2 lines)
Lines 254-290 __PACKAGE__->table("borrowers"); Link Here
254
  is_nullable: 1
254
  is_nullable: 1
255
  size: 255
255
  size: 255
256
256
257
=head2 contactname
258
259
  data_type: 'mediumtext'
260
  is_nullable: 1
261
262
=head2 contactfirstname
263
264
  data_type: 'text'
265
  is_nullable: 1
266
267
=head2 contacttitle
268
269
  data_type: 'text'
270
  is_nullable: 1
271
272
=head2 guarantorid
273
274
  data_type: 'integer'
275
  is_nullable: 1
276
277
=head2 borrowernotes
257
=head2 borrowernotes
278
258
279
  data_type: 'mediumtext'
259
  data_type: 'mediumtext'
280
  is_nullable: 1
260
  is_nullable: 1
281
261
282
=head2 relationship
283
284
  data_type: 'varchar'
285
  is_nullable: 1
286
  size: 100
287
288
=head2 sex
262
=head2 sex
289
263
290
  data_type: 'varchar'
264
  data_type: 'varchar'
Lines 522-539 __PACKAGE__->add_columns( Link Here
522
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
496
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
523
  "debarredcomment",
497
  "debarredcomment",
524
  { data_type => "varchar", is_nullable => 1, size => 255 },
498
  { data_type => "varchar", is_nullable => 1, size => 255 },
525
  "contactname",
526
  { data_type => "mediumtext", is_nullable => 1 },
527
  "contactfirstname",
528
  { data_type => "text", is_nullable => 1 },
529
  "contacttitle",
530
  { data_type => "text", is_nullable => 1 },
531
  "guarantorid",
532
  { data_type => "integer", is_nullable => 1 },
533
  "borrowernotes",
499
  "borrowernotes",
534
  { data_type => "mediumtext", is_nullable => 1 },
500
  { data_type => "mediumtext", is_nullable => 1 },
535
  "relationship",
536
  { data_type => "varchar", is_nullable => 1, size => 100 },
537
  "sex",
501
  "sex",
538
  { data_type => "varchar", is_nullable => 1, size => 1 },
502
  { data_type => "varchar", is_nullable => 1, size => 1 },
539
  "password",
503
  "password",
Lines 1234-1241 Composing rels: L</aqorder_users> -> ordernumber Link Here
1234
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1198
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1235
1199
1236
1200
1237
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-05-03 13:19:34
1201
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-06-14 16:43:03
1238
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1u8SP/oLjNEtEIOYd14t9w
1202
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jrQDFEPJ21Zd7340ZiDC2A
1239
1203
1240
__PACKAGE__->belongs_to(
1204
__PACKAGE__->belongs_to(
1241
    "guarantor",
1205
    "guarantor",
(-)a/Koha/Schema/Result/BorrowerModification.pm (-38 / +2 lines)
Lines 264-300 __PACKAGE__->table("borrower_modifications"); Link Here
264
  is_nullable: 1
264
  is_nullable: 1
265
  size: 255
265
  size: 255
266
266
267
=head2 contactname
268
269
  data_type: 'mediumtext'
270
  is_nullable: 1
271
272
=head2 contactfirstname
273
274
  data_type: 'text'
275
  is_nullable: 1
276
277
=head2 contacttitle
278
279
  data_type: 'text'
280
  is_nullable: 1
281
282
=head2 guarantorid
283
284
  data_type: 'integer'
285
  is_nullable: 1
286
287
=head2 borrowernotes
267
=head2 borrowernotes
288
268
289
  data_type: 'mediumtext'
269
  data_type: 'mediumtext'
290
  is_nullable: 1
270
  is_nullable: 1
291
271
292
=head2 relationship
293
294
  data_type: 'varchar'
295
  is_nullable: 1
296
  size: 100
297
298
=head2 sex
272
=head2 sex
299
273
300
  data_type: 'varchar'
274
  data_type: 'varchar'
Lines 516-533 __PACKAGE__->add_columns( Link Here
516
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
490
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
517
  "debarredcomment",
491
  "debarredcomment",
518
  { data_type => "varchar", is_nullable => 1, size => 255 },
492
  { data_type => "varchar", is_nullable => 1, size => 255 },
519
  "contactname",
520
  { data_type => "mediumtext", is_nullable => 1 },
521
  "contactfirstname",
522
  { data_type => "text", is_nullable => 1 },
523
  "contacttitle",
524
  { data_type => "text", is_nullable => 1 },
525
  "guarantorid",
526
  { data_type => "integer", is_nullable => 1 },
527
  "borrowernotes",
493
  "borrowernotes",
528
  { data_type => "mediumtext", is_nullable => 1 },
494
  { data_type => "mediumtext", is_nullable => 1 },
529
  "relationship",
530
  { data_type => "varchar", is_nullable => 1, size => 100 },
531
  "sex",
495
  "sex",
532
  { data_type => "varchar", is_nullable => 1, size => 1 },
496
  { data_type => "varchar", is_nullable => 1, size => 1 },
533
  "password",
497
  "password",
Lines 583-590 __PACKAGE__->add_columns( Link Here
583
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
547
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
584
548
585
549
586
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-10-06 10:38:42
550
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-06-14 16:43:03
587
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vZ9XjkjQv0q6l2kW3KMsLg
551
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:s2v50tW1m7nPryRUvN7VdA
588
552
589
553
590
# You can replace this text with custom content, and it will be preserved on regeneration
554
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Deletedborrower.pm (-39 / +2 lines)
Lines 252-288 __PACKAGE__->table("deletedborrowers"); Link Here
252
  is_nullable: 1
252
  is_nullable: 1
253
  size: 255
253
  size: 255
254
254
255
=head2 contactname
256
257
  data_type: 'mediumtext'
258
  is_nullable: 1
259
260
=head2 contactfirstname
261
262
  data_type: 'text'
263
  is_nullable: 1
264
265
=head2 contacttitle
266
267
  data_type: 'text'
268
  is_nullable: 1
269
270
=head2 guarantorid
271
272
  data_type: 'integer'
273
  is_nullable: 1
274
275
=head2 borrowernotes
255
=head2 borrowernotes
276
256
277
  data_type: 'mediumtext'
257
  data_type: 'mediumtext'
278
  is_nullable: 1
258
  is_nullable: 1
279
259
280
=head2 relationship
281
282
  data_type: 'varchar'
283
  is_nullable: 1
284
  size: 100
285
286
=head2 sex
260
=head2 sex
287
261
288
  data_type: 'varchar'
262
  data_type: 'varchar'
Lines 507-524 __PACKAGE__->add_columns( Link Here
507
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
481
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
508
  "debarredcomment",
482
  "debarredcomment",
509
  { data_type => "varchar", is_nullable => 1, size => 255 },
483
  { data_type => "varchar", is_nullable => 1, size => 255 },
510
  "contactname",
511
  { data_type => "mediumtext", is_nullable => 1 },
512
  "contactfirstname",
513
  { data_type => "text", is_nullable => 1 },
514
  "contacttitle",
515
  { data_type => "text", is_nullable => 1 },
516
  "guarantorid",
517
  { data_type => "integer", is_nullable => 1 },
518
  "borrowernotes",
484
  "borrowernotes",
519
  { data_type => "mediumtext", is_nullable => 1 },
485
  { data_type => "mediumtext", is_nullable => 1 },
520
  "relationship",
521
  { data_type => "varchar", is_nullable => 1, size => 100 },
522
  "sex",
486
  "sex",
523
  { data_type => "varchar", is_nullable => 1, size => 1 },
487
  { data_type => "varchar", is_nullable => 1, size => 1 },
524
  "password",
488
  "password",
Lines 564-571 __PACKAGE__->add_columns( Link Here
564
);
528
);
565
529
566
530
567
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-03-04 19:32:39
531
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-06-14 16:43:03
568
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:UqTaMlpDnOWlhfQyF5EjHA
532
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:V7lDeMUNndEURAZh8DCoVA
569
533
570
534
571
# You can replace this text with custom code or comments, and it will be preserved on regeneration
535
# You can replace this text with custom code or comments, and it will be preserved on regeneration
572
- 

Return to bug 14570