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

(-)a/Koha/Schema/Result/Borrower.pm (-2 / +10 lines)
Lines 381-386 __PACKAGE__->table("borrowers"); Link Here
381
  default_value: 1
381
  default_value: 1
382
  is_nullable: 0
382
  is_nullable: 0
383
383
384
=head2 privacy_guarantor_fines
385
386
  data_type: 'tinyint'
387
  default_value: 0
388
  is_nullable: 0
389
384
=head2 privacy_guarantor_checkouts
390
=head2 privacy_guarantor_checkouts
385
391
386
  data_type: 'tinyint'
392
  data_type: 'tinyint'
Lines 584-589 __PACKAGE__->add_columns( Link Here
584
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
590
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
585
  "privacy",
591
  "privacy",
586
  { data_type => "integer", default_value => 1, is_nullable => 0 },
592
  { data_type => "integer", default_value => 1, is_nullable => 0 },
593
  "privacy_guarantor_fines",
594
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
587
  "privacy_guarantor_checkouts",
595
  "privacy_guarantor_checkouts",
588
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
596
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
589
  "checkprevcheckout",
597
  "checkprevcheckout",
Lines 1380-1387 Composing rels: L</aqorder_users> -> ordernumber Link Here
1380
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1388
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1381
1389
1382
1390
1383
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-03-25 21:32:19
1391
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-05-01 17:46:46
1384
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:zQiYI20PSKC7Kub0678iAA
1392
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hldn1CQpN17+009opY26sA
1385
1393
1386
__PACKAGE__->add_columns(
1394
__PACKAGE__->add_columns(
1387
    '+lost' => { is_boolean => 1 },
1395
    '+lost' => { is_boolean => 1 },
(-)a/Koha/Schema/Result/Deletedborrower.pm (-2 / +10 lines)
Lines 378-383 __PACKAGE__->table("deletedborrowers"); Link Here
378
  default_value: 1
378
  default_value: 1
379
  is_nullable: 0
379
  is_nullable: 0
380
380
381
=head2 privacy_guarantor_fines
382
383
  data_type: 'tinyint'
384
  default_value: 0
385
  is_nullable: 0
386
381
=head2 privacy_guarantor_checkouts
387
=head2 privacy_guarantor_checkouts
382
388
383
  data_type: 'tinyint'
389
  data_type: 'tinyint'
Lines 569-574 __PACKAGE__->add_columns( Link Here
569
  { data_type => "integer", is_nullable => 1 },
575
  { data_type => "integer", is_nullable => 1 },
570
  "privacy",
576
  "privacy",
571
  { data_type => "integer", default_value => 1, is_nullable => 0 },
577
  { data_type => "integer", default_value => 1, is_nullable => 0 },
578
  "privacy_guarantor_fines",
579
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
572
  "privacy_guarantor_checkouts",
580
  "privacy_guarantor_checkouts",
573
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
581
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
574
  "checkprevcheckout",
582
  "checkprevcheckout",
Lines 605-612 __PACKAGE__->add_columns( Link Here
605
);
613
);
606
614
607
615
608
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-03-25 21:32:19
616
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-05-01 17:46:46
609
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:MXaX5GzSeZh/SkfqNmd5hQ
617
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:husqub0S1QFw8tscWRGzrw
610
618
611
619
612
# You can replace this text with custom code or comments, and it will be preserved on regeneration
620
# You can replace this text with custom code or comments, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/SearchField.pm (-5 / +6 lines)
Lines 48-54 the human readable name of the field, for display Link Here
48
=head2 type
48
=head2 type
49
49
50
  data_type: 'enum'
50
  data_type: 'enum'
51
  extra: {list => ["","string","date","number","boolean","sum"]}
51
  extra: {list => ["","string","date","number","boolean","sum","isbn","stdno"]}
52
  is_nullable: 0
52
  is_nullable: 0
53
53
54
what type of data this holds, relevant when storing it in the search engine
54
what type of data this holds, relevant when storing it in the search engine
Lines 65-71 __PACKAGE__->add_columns( Link Here
65
  "type",
65
  "type",
66
  {
66
  {
67
    data_type => "enum",
67
    data_type => "enum",
68
    extra => { list => ["", "string", "date", "number", "boolean", "sum"] },
68
    extra => {
69
      list => ["", "string", "date", "number", "boolean", "sum", "isbn", "stdno"],
70
    },
69
    is_nullable => 0,
71
    is_nullable => 0,
70
  },
72
  },
71
);
73
);
Lines 114-121 __PACKAGE__->has_many( Link Here
114
);
116
);
115
117
116
118
117
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-03-23 13:30:43
119
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-05-01 17:46:46
118
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1IenQWmCO16tJ/nIFTFYug
120
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lmjuGxSq2AKyv3tjmL7CzA
119
121
120
__PACKAGE__->many_to_many("search_marc_maps", "search_marc_to_fields", "search_marc_map");
122
__PACKAGE__->many_to_many("search_marc_maps", "search_marc_to_fields", "search_marc_map");
121
123
122
- 

Return to bug 20691