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

(-)a/Koha/Schema/Result/Borrower.pm (-2 / +16 lines)
Lines 427-432 __PACKAGE__->table("borrowers"); Link Here
427
  datetime_undef_if_invalid: 1
427
  datetime_undef_if_invalid: 1
428
  is_nullable: 1
428
  is_nullable: 1
429
429
430
=head2 lang
431
432
  data_type: 'varchar'
433
  default_value: 'default'
434
  is_nullable: 0
435
  size: 25
436
430
=cut
437
=cut
431
438
432
__PACKAGE__->add_columns(
439
__PACKAGE__->add_columns(
Lines 616-621 __PACKAGE__->add_columns( Link Here
616
    datetime_undef_if_invalid => 1,
623
    datetime_undef_if_invalid => 1,
617
    is_nullable => 1,
624
    is_nullable => 1,
618
  },
625
  },
626
  "lang",
627
  {
628
    data_type => "varchar",
629
    default_value => "default",
630
    is_nullable => 0,
631
    size => 25,
632
  },
619
);
633
);
620
634
621
=head1 PRIMARY KEY
635
=head1 PRIMARY KEY
Lines 1334-1341 Composing rels: L</aqorder_users> -> ordernumber Link Here
1334
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1348
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1335
1349
1336
1350
1337
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-10-31 10:39:35
1351
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-12-08 10:15:45
1338
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Lc6GQ2E7d+tyzTk3v2sWjQ
1352
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:xTvgxB8ENCv2o5skyvMxPQ
1339
1353
1340
__PACKAGE__->belongs_to(
1354
__PACKAGE__->belongs_to(
1341
    "guarantor",
1355
    "guarantor",
(-)a/Koha/Schema/Result/Deletedborrower.pm (-2 / +16 lines)
Lines 424-429 __PACKAGE__->table("deletedborrowers"); Link Here
424
  datetime_undef_if_invalid: 1
424
  datetime_undef_if_invalid: 1
425
  is_nullable: 1
425
  is_nullable: 1
426
426
427
=head2 lang
428
429
  data_type: 'varchar'
430
  default_value: 'default'
431
  is_nullable: 0
432
  size: 25
433
427
=cut
434
=cut
428
435
429
__PACKAGE__->add_columns(
436
__PACKAGE__->add_columns(
Lines 601-611 __PACKAGE__->add_columns( Link Here
601
    datetime_undef_if_invalid => 1,
608
    datetime_undef_if_invalid => 1,
602
    is_nullable => 1,
609
    is_nullable => 1,
603
  },
610
  },
611
  "lang",
612
  {
613
    data_type => "varchar",
614
    default_value => "default",
615
    is_nullable => 0,
616
    size => 25,
617
  },
604
);
618
);
605
619
606
620
607
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-09-13 17:32:29
621
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-12-08 10:15:45
608
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:pcdyzQacTbFDJ9R1k0E8mA
622
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:u/F6q05mnfMb49WAyKI1YQ
609
623
610
624
611
# You can replace this text with custom code or comments, and it will be preserved on regeneration
625
# You can replace this text with custom code or comments, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Letter.pm (-3 / +16 lines)
Lines 77-82 __PACKAGE__->table("letter"); Link Here
77
  is_nullable: 0
77
  is_nullable: 0
78
  size: 20
78
  size: 20
79
79
80
=head2 lang
81
82
  data_type: 'varchar'
83
  default_value: 'default'
84
  is_nullable: 0
85
  size: 25
86
80
=cut
87
=cut
81
88
82
__PACKAGE__->add_columns(
89
__PACKAGE__->add_columns(
Lines 102-107 __PACKAGE__->add_columns( Link Here
102
    is_nullable => 0,
109
    is_nullable => 0,
103
    size => 20,
110
    size => 20,
104
  },
111
  },
112
  "lang",
113
  {
114
    data_type => "varchar",
115
    default_value => "default",
116
    is_nullable => 0,
117
    size => 25,
118
  },
105
);
119
);
106
120
107
=head1 PRIMARY KEY
121
=head1 PRIMARY KEY
Lines 159-166 __PACKAGE__->has_many( Link Here
159
);
173
);
160
174
161
175
162
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2014-05-02 18:04:32
176
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-12-08 10:15:45
163
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:HFUQ+/BKlweHglzOlm0lUQ
177
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fqBKGXoxc9MXSghYj6+cLg
164
178
165
179
166
# You can replace this text with custom content, and it will be preserved on regeneration
180
# You can replace this text with custom content, and it will be preserved on regeneration
167
- 

Return to bug 17762