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

(-)a/Koha/Schema/Result/Accountline.pm (-2 / +9 lines)
Lines 112-117 __PACKAGE__->table("accountlines"); Link Here
112
  data_type: 'text'
112
  data_type: 'text'
113
  is_nullable: 1
113
  is_nullable: 1
114
114
115
=head2 paymentmode
116
117
  data_type: 'text'
118
  is_nullable: 1
119
115
=head2 manager_id
120
=head2 manager_id
116
121
117
  data_type: 'integer'
122
  data_type: 'integer'
Lines 160-165 __PACKAGE__->add_columns( Link Here
160
  { data_type => "integer", default_value => 0, is_nullable => 0 },
165
  { data_type => "integer", default_value => 0, is_nullable => 0 },
161
  "note",
166
  "note",
162
  { data_type => "text", is_nullable => 1 },
167
  { data_type => "text", is_nullable => 1 },
168
  "paymentmode",
169
  { data_type => "text", is_nullable => 1 },
163
  "manager_id",
170
  "manager_id",
164
  { data_type => "integer", is_nullable => 1 },
171
  { data_type => "integer", is_nullable => 1 },
165
);
172
);
Lines 214-221 __PACKAGE__->belongs_to( Link Here
214
);
221
);
215
222
216
223
217
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-07-11 09:26:55
224
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-12-30 15:27:31
218
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jUiCeLLPg5228rNEBW0w2g
225
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FD7tYHHWmTfEUKDNEHNJ4w
219
226
220
227
221
# You can replace this text with custom content, and it will be preserved on regeneration
228
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Aqbasket.pm (-3 / +3 lines)
Lines 203-209 __PACKAGE__->belongs_to( Link Here
203
  {
203
  {
204
    is_deferrable => 1,
204
    is_deferrable => 1,
205
    join_type     => "LEFT",
205
    join_type     => "LEFT",
206
    on_delete     => "RESTRICT",
206
    on_delete     => "CASCADE",
207
    on_update     => "CASCADE",
207
    on_update     => "CASCADE",
208
  },
208
  },
209
);
209
);
Lines 274-281 Composing rels: L</aqbasketusers> -> borrowernumber Link Here
274
__PACKAGE__->many_to_many("borrowernumbers", "aqbasketusers", "borrowernumber");
274
__PACKAGE__->many_to_many("borrowernumbers", "aqbasketusers", "borrowernumber");
275
275
276
276
277
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-07-11 09:26:55
277
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-12-30 15:27:31
278
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:pT+YFf9nfD/dmBuE4RNCFw
278
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:pHYJoalRN1RqFhm9WD2h+Q
279
279
280
280
281
# You can replace this text with custom content, and it will be preserved on regeneration
281
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Aqorder.pm (-10 / +10 lines)
Lines 209-220 __PACKAGE__->table("aqorders"); Link Here
209
  datetime_undef_if_invalid: 1
209
  datetime_undef_if_invalid: 1
210
  is_nullable: 1
210
  is_nullable: 1
211
211
212
=head2 subscriptionid
213
214
  data_type: 'integer'
215
  is_foreign_key: 1
216
  is_nullable: 1
217
218
=head2 parent_ordernumber
212
=head2 parent_ordernumber
219
213
220
  data_type: 'integer'
214
  data_type: 'integer'
Lines 227-232 __PACKAGE__->table("aqorders"); Link Here
227
  is_nullable: 1
221
  is_nullable: 1
228
  size: 16
222
  size: 16
229
223
224
=head2 subscriptionid
225
226
  data_type: 'integer'
227
  is_foreign_key: 1
228
  is_nullable: 1
229
230
=cut
230
=cut
231
231
232
__PACKAGE__->add_columns(
232
__PACKAGE__->add_columns(
Lines 299-306 __PACKAGE__->add_columns( Link Here
299
  { data_type => "integer", default_value => 0, is_nullable => 1 },
299
  { data_type => "integer", default_value => 0, is_nullable => 1 },
300
  "claimed_date",
300
  "claimed_date",
301
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
301
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
302
  "subscriptionid",
303
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
304
  "parent_ordernumber",
302
  "parent_ordernumber",
305
  { data_type => "integer", is_nullable => 1 },
303
  { data_type => "integer", is_nullable => 1 },
306
  "orderstatus",
304
  "orderstatus",
Lines 310-315 __PACKAGE__->add_columns( Link Here
310
    is_nullable => 1,
308
    is_nullable => 1,
311
    size => 16,
309
    size => 16,
312
  },
310
  },
311
  "subscriptionid",
312
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
313
);
313
);
314
314
315
=head1 PRIMARY KEY
315
=head1 PRIMARY KEY
Lines 492-499 Composing rels: L</aqorder_users> -> borrowernumber Link Here
492
__PACKAGE__->many_to_many("borrowernumbers", "aqorder_users", "borrowernumber");
492
__PACKAGE__->many_to_many("borrowernumbers", "aqorder_users", "borrowernumber");
493
493
494
494
495
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-05-14 11:27:15
495
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-12-30 15:27:31
496
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BCa/SxerJ+zEh8Pg9Jdkaw
496
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+86LQQVLbkBSA0AQYZz6aw
497
497
498
498
499
# You can replace this text with custom content, and it will be preserved on regeneration
499
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Borrower.pm (-2 / +26 lines)
Lines 285-290 __PACKAGE__->table("borrowers"); Link Here
285
  is_nullable: 1
285
  is_nullable: 1
286
  size: 100
286
  size: 100
287
287
288
=head2 ethnicity
289
290
  data_type: 'varchar'
291
  is_nullable: 1
292
  size: 50
293
294
=head2 ethnotes
295
296
  data_type: 'varchar'
297
  is_nullable: 1
298
  size: 255
299
288
=head2 sex
300
=head2 sex
289
301
290
  data_type: 'varchar'
302
  data_type: 'varchar'
Lines 395-400 __PACKAGE__->table("borrowers"); Link Here
395
  default_value: 1
407
  default_value: 1
396
  is_nullable: 0
408
  is_nullable: 0
397
409
410
=head2 primary_contact_method
411
412
  data_type: 'varchar'
413
  is_nullable: 1
414
  size: 45
415
398
=cut
416
=cut
399
417
400
__PACKAGE__->add_columns(
418
__PACKAGE__->add_columns(
Lines 522-527 __PACKAGE__->add_columns( Link Here
522
  { data_type => "mediumtext", is_nullable => 1 },
540
  { data_type => "mediumtext", is_nullable => 1 },
523
  "relationship",
541
  "relationship",
524
  { data_type => "varchar", is_nullable => 1, size => 100 },
542
  { data_type => "varchar", is_nullable => 1, size => 100 },
543
  "ethnicity",
544
  { data_type => "varchar", is_nullable => 1, size => 50 },
545
  "ethnotes",
546
  { data_type => "varchar", is_nullable => 1, size => 255 },
525
  "sex",
547
  "sex",
526
  { data_type => "varchar", is_nullable => 1, size => 1 },
548
  { data_type => "varchar", is_nullable => 1, size => 1 },
527
  "password",
549
  "password",
Lines 560-565 __PACKAGE__->add_columns( Link Here
560
  { data_type => "varchar", is_nullable => 1, size => 50 },
582
  { data_type => "varchar", is_nullable => 1, size => 50 },
561
  "privacy",
583
  "privacy",
562
  { data_type => "integer", default_value => 1, is_nullable => 0 },
584
  { data_type => "integer", default_value => 1, is_nullable => 0 },
585
  "primary_contact_method",
586
  { data_type => "varchar", is_nullable => 1, size => 45 },
563
);
587
);
564
588
565
=head1 PRIMARY KEY
589
=head1 PRIMARY KEY
Lines 1153-1160 Composing rels: L</aqorder_users> -> ordernumber Link Here
1153
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1177
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1154
1178
1155
1179
1156
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-10-21 19:50:05
1180
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-12-30 15:27:31
1157
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QafovaRBnm36nyoyQTGIgQ
1181
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:q85WYjBNddrsVi2U846zOA
1158
1182
1159
1183
1160
# You can replace this text with custom content, and it will be preserved on regeneration
1184
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/BorrowerModification.pm (-2 / +18 lines)
Lines 295-300 __PACKAGE__->table("borrower_modifications"); Link Here
295
  is_nullable: 1
295
  is_nullable: 1
296
  size: 100
296
  size: 100
297
297
298
=head2 ethnicity
299
300
  data_type: 'varchar'
301
  is_nullable: 1
302
  size: 50
303
304
=head2 ethnotes
305
306
  data_type: 'varchar'
307
  is_nullable: 1
308
  size: 255
309
298
=head2 sex
310
=head2 sex
299
311
300
  data_type: 'varchar'
312
  data_type: 'varchar'
Lines 528-533 __PACKAGE__->add_columns( Link Here
528
  { data_type => "mediumtext", is_nullable => 1 },
540
  { data_type => "mediumtext", is_nullable => 1 },
529
  "relationship",
541
  "relationship",
530
  { data_type => "varchar", is_nullable => 1, size => 100 },
542
  { data_type => "varchar", is_nullable => 1, size => 100 },
543
  "ethnicity",
544
  { data_type => "varchar", is_nullable => 1, size => 50 },
545
  "ethnotes",
546
  { data_type => "varchar", is_nullable => 1, size => 255 },
531
  "sex",
547
  "sex",
532
  { data_type => "varchar", is_nullable => 1, size => 1 },
548
  { data_type => "varchar", is_nullable => 1, size => 1 },
533
  "password",
549
  "password",
Lines 583-590 __PACKAGE__->add_columns( Link Here
583
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
599
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
584
600
585
601
586
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-10-06 10:38:42
602
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-12-30 15:27:31
587
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vZ9XjkjQv0q6l2kW3KMsLg
603
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:eZoxdMxDenF69WRgtYNWEA
588
604
589
605
590
# You can replace this text with custom content, and it will be preserved on regeneration
606
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Branch.pm (-2 / +17 lines)
Lines 457-462 __PACKAGE__->has_many( Link Here
457
  { cascade_copy => 0, cascade_delete => 0 },
457
  { cascade_copy => 0, cascade_delete => 0 },
458
);
458
);
459
459
460
=head2 openinghours
461
462
Type: has_many
463
464
Related object: L<Koha::Schema::Result::Openinghour>
465
466
=cut
467
468
__PACKAGE__->has_many(
469
  "openinghours",
470
  "Koha::Schema::Result::Openinghour",
471
  { "foreign.branchcode" => "self.branchcode" },
472
  { cascade_copy => 0, cascade_delete => 0 },
473
);
474
460
=head2 reserves
475
=head2 reserves
461
476
462
Type: has_many
477
Type: has_many
Lines 513-520 Composing rels: L</branchrelations> -> categorycode Link Here
513
__PACKAGE__->many_to_many("categorycodes", "branchrelations", "categorycode");
528
__PACKAGE__->many_to_many("categorycodes", "branchrelations", "categorycode");
514
529
515
530
516
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-11-06 15:26:36
531
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-12-30 15:27:31
517
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CGNPB/MkGLOihDThj43/4A
532
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:euU/hMyGHdFeCpLjs2UK1Q
518
533
519
534
520
# You can replace this text with custom content, and it will be preserved on regeneration
535
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Category.pm (-16 / +16 lines)
Lines 102-114 __PACKAGE__->table("categories"); Link Here
102
  is_nullable: 0
102
  is_nullable: 0
103
  size: 1
103
  size: 1
104
104
105
=head2 BlockExpiredPatronOpacActions
106
107
  accessor: 'block_expired_patron_opac_actions'
108
  data_type: 'tinyint'
109
  default_value: -1
110
  is_nullable: 0
111
112
=head2 default_privacy
105
=head2 default_privacy
113
106
114
  data_type: 'enum'
107
  data_type: 'enum'
Lines 116-121 __PACKAGE__->table("categories"); Link Here
116
  extra: {list => ["default","never","forever"]}
109
  extra: {list => ["default","never","forever"]}
117
  is_nullable: 0
110
  is_nullable: 0
118
111
112
=head2 BlockExpiredPatronOpacActions
113
114
  accessor: 'block_expired_patron_opac_actions'
115
  data_type: 'tinyint'
116
  default_value: -1
117
  is_nullable: 0
118
119
=cut
119
=cut
120
120
121
__PACKAGE__->add_columns(
121
__PACKAGE__->add_columns(
Lines 147-159 __PACKAGE__->add_columns( Link Here
147
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
147
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
148
  "category_type",
148
  "category_type",
149
  { data_type => "varchar", default_value => "A", is_nullable => 0, size => 1 },
149
  { data_type => "varchar", default_value => "A", is_nullable => 0, size => 1 },
150
  "BlockExpiredPatronOpacActions",
151
  {
152
    accessor      => "block_expired_patron_opac_actions",
153
    data_type     => "tinyint",
154
    default_value => -1,
155
    is_nullable   => 0,
156
  },
157
  "default_privacy",
150
  "default_privacy",
158
  {
151
  {
159
    data_type => "enum",
152
    data_type => "enum",
Lines 161-166 __PACKAGE__->add_columns( Link Here
161
    extra => { list => ["default", "never", "forever"] },
154
    extra => { list => ["default", "never", "forever"] },
162
    is_nullable => 0,
155
    is_nullable => 0,
163
  },
156
  },
157
  "BlockExpiredPatronOpacActions",
158
  {
159
    accessor      => "block_expired_patron_opac_actions",
160
    data_type     => "tinyint",
161
    default_value => -1,
162
    is_nullable   => 0,
163
  },
164
);
164
);
165
165
166
=head1 PRIMARY KEY
166
=head1 PRIMARY KEY
Lines 253-260 __PACKAGE__->might_have( Link Here
253
);
253
);
254
254
255
255
256
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-08-18 13:01:05
256
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-12-30 15:27:31
257
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:T4i7vp1kAZFXy6DiV1dqyw
257
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:VvIIGRqjBIakxuHd+CTnRA
258
258
259
259
260
# You can replace this text with custom content, and it will be preserved on regeneration
260
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/ClassSource.pm (-2 / +10 lines)
Lines 49-54 __PACKAGE__->table("class_sources"); Link Here
49
  is_nullable: 0
49
  is_nullable: 0
50
  size: 10
50
  size: 10
51
51
52
=head2 splitting_rule
53
54
  data_type: 'varchar'
55
  is_nullable: 1
56
  size: 64
57
52
=cut
58
=cut
53
59
54
__PACKAGE__->add_columns(
60
__PACKAGE__->add_columns(
Lines 66-71 __PACKAGE__->add_columns( Link Here
66
    is_nullable => 0,
72
    is_nullable => 0,
67
    size => 10,
73
    size => 10,
68
  },
74
  },
75
  "splitting_rule",
76
  { data_type => "varchar", is_nullable => 1, size => 64 },
69
);
77
);
70
78
71
=head1 PRIMARY KEY
79
=head1 PRIMARY KEY
Lines 98-105 __PACKAGE__->belongs_to( Link Here
98
);
106
);
99
107
100
108
101
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-07-11 09:26:55
109
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-12-30 15:27:31
102
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:2O58Q7wdbfAl6xmiW02PAA
110
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0W99ECImafmOglV+fZmCZQ
103
111
104
112
105
# You can replace this text with custom content, and it will be preserved on regeneration
113
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Deletedborrower.pm (-2 / +18 lines)
Lines 283-288 __PACKAGE__->table("deletedborrowers"); Link Here
283
  is_nullable: 1
283
  is_nullable: 1
284
  size: 100
284
  size: 100
285
285
286
=head2 ethnicity
287
288
  data_type: 'varchar'
289
  is_nullable: 1
290
  size: 50
291
292
=head2 ethnotes
293
294
  data_type: 'varchar'
295
  is_nullable: 1
296
  size: 255
297
286
=head2 sex
298
=head2 sex
287
299
288
  data_type: 'varchar'
300
  data_type: 'varchar'
Lines 508-513 __PACKAGE__->add_columns( Link Here
508
  { data_type => "mediumtext", is_nullable => 1 },
520
  { data_type => "mediumtext", is_nullable => 1 },
509
  "relationship",
521
  "relationship",
510
  { data_type => "varchar", is_nullable => 1, size => 100 },
522
  { data_type => "varchar", is_nullable => 1, size => 100 },
523
  "ethnicity",
524
  { data_type => "varchar", is_nullable => 1, size => 50 },
525
  "ethnotes",
526
  { data_type => "varchar", is_nullable => 1, size => 255 },
511
  "sex",
527
  "sex",
512
  { data_type => "varchar", is_nullable => 1, size => 1 },
528
  { data_type => "varchar", is_nullable => 1, size => 1 },
513
  "password",
529
  "password",
Lines 549-556 __PACKAGE__->add_columns( Link Here
549
);
565
);
550
566
551
567
552
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-10-06 10:38:42
568
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-12-30 15:27:31
553
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:NofxbMGIuZqlGCqvjPEI1Q
569
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FEc3DunxET/+t5TmOwT4hA
554
570
555
571
556
# You can replace this text with custom content, and it will be preserved on regeneration
572
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/ImportBatch.pm (-13 / +13 lines)
Lines 99-111 __PACKAGE__->table("import_batches"); Link Here
99
  extra: {list => ["batch","z3950","webservice"]}
99
  extra: {list => ["batch","z3950","webservice"]}
100
  is_nullable: 0
100
  is_nullable: 0
101
101
102
=head2 record_type
103
104
  data_type: 'enum'
105
  default_value: 'biblio'
106
  extra: {list => ["biblio","auth","holdings"]}
107
  is_nullable: 0
108
109
=head2 file_name
102
=head2 file_name
110
103
111
  data_type: 'varchar'
104
  data_type: 'varchar'
Lines 117-122 __PACKAGE__->table("import_batches"); Link Here
117
  data_type: 'mediumtext'
110
  data_type: 'mediumtext'
118
  is_nullable: 1
111
  is_nullable: 1
119
112
113
=head2 record_type
114
115
  data_type: 'enum'
116
  default_value: 'biblio'
117
  extra: {list => ["biblio","auth","holdings"]}
118
  is_nullable: 0
119
120
=cut
120
=cut
121
121
122
__PACKAGE__->add_columns(
122
__PACKAGE__->add_columns(
Lines 192-197 __PACKAGE__->add_columns( Link Here
192
    extra => { list => ["batch", "z3950", "webservice"] },
192
    extra => { list => ["batch", "z3950", "webservice"] },
193
    is_nullable => 0,
193
    is_nullable => 0,
194
  },
194
  },
195
  "file_name",
196
  { data_type => "varchar", is_nullable => 1, size => 100 },
197
  "comments",
198
  { data_type => "mediumtext", is_nullable => 1 },
195
  "record_type",
199
  "record_type",
196
  {
200
  {
197
    data_type => "enum",
201
    data_type => "enum",
Lines 199-208 __PACKAGE__->add_columns( Link Here
199
    extra => { list => ["biblio", "auth", "holdings"] },
203
    extra => { list => ["biblio", "auth", "holdings"] },
200
    is_nullable => 0,
204
    is_nullable => 0,
201
  },
205
  },
202
  "file_name",
203
  { data_type => "varchar", is_nullable => 1, size => 100 },
204
  "comments",
205
  { data_type => "mediumtext", is_nullable => 1 },
206
);
206
);
207
207
208
=head1 PRIMARY KEY
208
=head1 PRIMARY KEY
Lines 235-242 __PACKAGE__->has_many( Link Here
235
);
235
);
236
236
237
237
238
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-30 03:46:54
238
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-12-30 15:27:31
239
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4UfJtTeAzzsuBycjsn2foQ
239
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4vQdHH3hjEuWSkYyaI3Ozw
240
240
241
241
242
# You can replace this text with custom content, and it will be preserved on regeneration
242
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Issue.pm (-2 / +18 lines)
Lines 101-106 __PACKAGE__->table("issues"); Link Here
101
  default_value: 0
101
  default_value: 0
102
  is_nullable: 0
102
  is_nullable: 0
103
103
104
=head2 downloadurl
105
106
  data_type: 'varchar'
107
  is_nullable: 1
108
  size: 512
109
110
=head2 token
111
112
  data_type: 'varchar'
113
  is_nullable: 1
114
  size: 64
115
104
=cut
116
=cut
105
117
106
__PACKAGE__->add_columns(
118
__PACKAGE__->add_columns(
Lines 151-156 __PACKAGE__->add_columns( Link Here
151
  },
163
  },
152
  "onsite_checkout",
164
  "onsite_checkout",
153
  { data_type => "integer", default_value => 0, is_nullable => 0 },
165
  { data_type => "integer", default_value => 0, is_nullable => 0 },
166
  "downloadurl",
167
  { data_type => "varchar", is_nullable => 1, size => 512 },
168
  "token",
169
  { data_type => "varchar", is_nullable => 1, size => 64 },
154
);
170
);
155
171
156
=head1 PRIMARY KEY
172
=head1 PRIMARY KEY
Lines 222-229 __PACKAGE__->belongs_to( Link Here
222
);
238
);
223
239
224
240
225
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-11-04 12:00:58
241
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-12-30 15:27:31
226
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kREecsHr6wZPiokS946BHw
242
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hNMjQTvUsQItccNXjMMAgQ
227
243
228
__PACKAGE__->belongs_to(
244
__PACKAGE__->belongs_to(
229
    "borrower",
245
    "borrower",
(-)a/Koha/Schema/Result/Itemtype.pm (-4 / +20 lines)
Lines 35-40 __PACKAGE__->table("itemtypes"); Link Here
35
  data_type: 'mediumtext'
35
  data_type: 'mediumtext'
36
  is_nullable: 1
36
  is_nullable: 1
37
37
38
=head2 categoriesearch
39
40
  data_type: 'varchar'
41
  is_nullable: 0
42
  size: 15
43
38
=head2 rentalcharge
44
=head2 rentalcharge
39
45
40
  data_type: 'double precision'
46
  data_type: 'double precision'
Lines 46-51 __PACKAGE__->table("itemtypes"); Link Here
46
  data_type: 'smallint'
52
  data_type: 'smallint'
47
  is_nullable: 1
53
  is_nullable: 1
48
54
55
=head2 notdisplayopac
56
57
  data_type: 'varchar'
58
  is_nullable: 1
59
  size: 15
60
49
=head2 imageurl
61
=head2 imageurl
50
62
51
  data_type: 'varchar'
63
  data_type: 'varchar'
Lines 86-92 __PACKAGE__->table("itemtypes"); Link Here
86
98
87
  data_type: 'varchar'
99
  data_type: 'varchar'
88
  is_nullable: 1
100
  is_nullable: 1
89
  size: 80
101
  size: 15
90
102
91
=cut
103
=cut
92
104
Lines 95-104 __PACKAGE__->add_columns( Link Here
95
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
107
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
96
  "description",
108
  "description",
97
  { data_type => "mediumtext", is_nullable => 1 },
109
  { data_type => "mediumtext", is_nullable => 1 },
110
  "categoriesearch",
111
  { data_type => "varchar", is_nullable => 0, size => 15 },
98
  "rentalcharge",
112
  "rentalcharge",
99
  { data_type => "double precision", is_nullable => 1, size => [16, 4] },
113
  { data_type => "double precision", is_nullable => 1, size => [16, 4] },
100
  "notforloan",
114
  "notforloan",
101
  { data_type => "smallint", is_nullable => 1 },
115
  { data_type => "smallint", is_nullable => 1 },
116
  "notdisplayopac",
117
  { data_type => "varchar", is_nullable => 1, size => 15 },
102
  "imageurl",
118
  "imageurl",
103
  { data_type => "varchar", is_nullable => 1, size => 200 },
119
  { data_type => "varchar", is_nullable => 1, size => 200 },
104
  "summary",
120
  "summary",
Lines 117-123 __PACKAGE__->add_columns( Link Here
117
  "hideinopac",
133
  "hideinopac",
118
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
134
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
119
  "searchcategory",
135
  "searchcategory",
120
  { data_type => "varchar", is_nullable => 1, size => 80 },
136
  { data_type => "varchar", is_nullable => 1, size => 15 },
121
);
137
);
122
138
123
=head1 PRIMARY KEY
139
=head1 PRIMARY KEY
Lines 165-172 __PACKAGE__->might_have( Link Here
165
);
181
);
166
182
167
183
168
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-10-22 11:11:19
184
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-12-30 15:27:31
169
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:nknZ3AB923k+tEw7whtzQA
185
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jhuJFgWiIdqAKxNpr2kx9w
170
186
171
187
172
# You can replace this text with custom content, and it will be preserved on regeneration
188
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Letter.pm (-3 / +3 lines)
Lines 136-142 __PACKAGE__->belongs_to( Link Here
136
  "message_transport_type",
136
  "message_transport_type",
137
  "Koha::Schema::Result::MessageTransportType",
137
  "Koha::Schema::Result::MessageTransportType",
138
  { message_transport_type => "message_transport_type" },
138
  { message_transport_type => "message_transport_type" },
139
  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
139
  { is_deferrable => 1, on_delete => "RESTRICT", on_update => "RESTRICT" },
140
);
140
);
141
141
142
=head2 message_transports
142
=head2 message_transports
Lines 159-166 __PACKAGE__->has_many( Link Here
159
);
159
);
160
160
161
161
162
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2014-05-02 18:04:32
162
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-12-30 15:27:31
163
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:HFUQ+/BKlweHglzOlm0lUQ
163
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Kl9DqOlOuOALKMLJXeU0Hg
164
164
165
165
166
# You can replace this text with custom content, and it will be preserved on regeneration
166
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/MessageQueue.pm (-2 / +9 lines)
Lines 82-87 __PACKAGE__->table("message_queue"); Link Here
82
  data_type: 'mediumtext'
82
  data_type: 'mediumtext'
83
  is_nullable: 1
83
  is_nullable: 1
84
84
85
=head2 sentto_address
86
87
  data_type: 'mediumtext'
88
  is_nullable: 1
89
85
=head2 from_address
90
=head2 from_address
86
91
87
  data_type: 'mediumtext'
92
  data_type: 'mediumtext'
Lines 125-130 __PACKAGE__->add_columns( Link Here
125
  },
130
  },
126
  "to_address",
131
  "to_address",
127
  { data_type => "mediumtext", is_nullable => 1 },
132
  { data_type => "mediumtext", is_nullable => 1 },
133
  "sentto_address",
134
  { data_type => "mediumtext", is_nullable => 1 },
128
  "from_address",
135
  "from_address",
129
  { data_type => "mediumtext", is_nullable => 1 },
136
  { data_type => "mediumtext", is_nullable => 1 },
130
  "content_type",
137
  "content_type",
Lines 181-188 __PACKAGE__->belongs_to( Link Here
181
);
188
);
182
189
183
190
184
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-06-22 16:37:20
191
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-12-30 15:27:31
185
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:nQcmtLCbGEeLFLFP4jwy2g
192
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fYeAw5j22GJHZ93zFFh90Q
186
193
187
194
188
# You can replace this text with custom content, and it will be preserved on regeneration
195
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/OldIssue.pm (-2 / +18 lines)
Lines 100-105 __PACKAGE__->table("old_issues"); Link Here
100
  default_value: 0
100
  default_value: 0
101
  is_nullable: 0
101
  is_nullable: 0
102
102
103
=head2 downloadurl
104
105
  data_type: 'varchar'
106
  is_nullable: 1
107
  size: 512
108
109
=head2 token
110
111
  data_type: 'varchar'
112
  is_nullable: 1
113
  size: 64
114
103
=cut
115
=cut
104
116
105
__PACKAGE__->add_columns(
117
__PACKAGE__->add_columns(
Lines 150-155 __PACKAGE__->add_columns( Link Here
150
  },
162
  },
151
  "onsite_checkout",
163
  "onsite_checkout",
152
  { data_type => "integer", default_value => 0, is_nullable => 0 },
164
  { data_type => "integer", default_value => 0, is_nullable => 0 },
165
  "downloadurl",
166
  { data_type => "varchar", is_nullable => 1, size => 512 },
167
  "token",
168
  { data_type => "varchar", is_nullable => 1, size => 64 },
153
);
169
);
154
170
155
=head1 PRIMARY KEY
171
=head1 PRIMARY KEY
Lines 207-214 __PACKAGE__->belongs_to( Link Here
207
);
223
);
208
224
209
225
210
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-23 13:04:51
226
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-12-30 15:27:31
211
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9GdzytyInRcFZns/q0qb3Q
227
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EUdlTU+977/ieg8IczWbLw
212
228
213
229
214
# You can replace this text with custom content, and it will be preserved on regeneration
230
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Overduerule.pm (-2 / +26 lines)
Lines 55-60 __PACKAGE__->table("overduerules"); Link Here
55
  is_nullable: 1
55
  is_nullable: 1
56
  size: 1
56
  size: 1
57
57
58
=head2 invoice1
59
60
  data_type: 'integer'
61
  default_value: 0
62
  is_nullable: 1
63
58
=head2 delay2
64
=head2 delay2
59
65
60
  data_type: 'integer'
66
  data_type: 'integer'
Lines 67-72 __PACKAGE__->table("overduerules"); Link Here
67
  is_nullable: 1
73
  is_nullable: 1
68
  size: 1
74
  size: 1
69
75
76
=head2 invoice2
77
78
  data_type: 'integer'
79
  default_value: 0
80
  is_nullable: 1
81
70
=head2 letter2
82
=head2 letter2
71
83
72
  data_type: 'varchar'
84
  data_type: 'varchar'
Lines 90-95 __PACKAGE__->table("overduerules"); Link Here
90
  default_value: 0
102
  default_value: 0
91
  is_nullable: 1
103
  is_nullable: 1
92
104
105
=head2 invoice3
106
107
  data_type: 'integer'
108
  default_value: 0
109
  is_nullable: 1
110
93
=cut
111
=cut
94
112
95
__PACKAGE__->add_columns(
113
__PACKAGE__->add_columns(
Lines 103-112 __PACKAGE__->add_columns( Link Here
103
  { data_type => "varchar", is_nullable => 1, size => 20 },
121
  { data_type => "varchar", is_nullable => 1, size => 20 },
104
  "debarred1",
122
  "debarred1",
105
  { data_type => "varchar", default_value => 0, is_nullable => 1, size => 1 },
123
  { data_type => "varchar", default_value => 0, is_nullable => 1, size => 1 },
124
  "invoice1",
125
  { data_type => "integer", default_value => 0, is_nullable => 1 },
106
  "delay2",
126
  "delay2",
107
  { data_type => "integer", is_nullable => 1 },
127
  { data_type => "integer", is_nullable => 1 },
108
  "debarred2",
128
  "debarred2",
109
  { data_type => "varchar", default_value => 0, is_nullable => 1, size => 1 },
129
  { data_type => "varchar", default_value => 0, is_nullable => 1, size => 1 },
130
  "invoice2",
131
  { data_type => "integer", default_value => 0, is_nullable => 1 },
110
  "letter2",
132
  "letter2",
111
  { data_type => "varchar", is_nullable => 1, size => 20 },
133
  { data_type => "varchar", is_nullable => 1, size => 20 },
112
  "delay3",
134
  "delay3",
Lines 115-120 __PACKAGE__->add_columns( Link Here
115
  { data_type => "varchar", is_nullable => 1, size => 20 },
137
  { data_type => "varchar", is_nullable => 1, size => 20 },
116
  "debarred3",
138
  "debarred3",
117
  { data_type => "integer", default_value => 0, is_nullable => 1 },
139
  { data_type => "integer", default_value => 0, is_nullable => 1 },
140
  "invoice3",
141
  { data_type => "integer", default_value => 0, is_nullable => 1 },
118
);
142
);
119
143
120
=head1 PRIMARY KEY
144
=head1 PRIMARY KEY
Lines 152-159 __PACKAGE__->has_many( Link Here
152
);
176
);
153
177
154
178
155
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2014-05-02 18:04:32
179
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-12-30 15:27:31
156
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:zQK4gTxkrPPwJzujbZxxdg
180
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wnpr7SjiybvE85EPXunZlQ
157
181
158
182
159
# You can replace this text with custom content, and it will be preserved on regeneration
183
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Patronimage.pm (-3 / +9 lines)
Lines 26-31 __PACKAGE__->table("patronimage"); Link Here
26
=head2 borrowernumber
26
=head2 borrowernumber
27
27
28
  data_type: 'integer'
28
  data_type: 'integer'
29
  default_value: 0
29
  is_foreign_key: 1
30
  is_foreign_key: 1
30
  is_nullable: 0
31
  is_nullable: 0
31
32
Lines 44-50 __PACKAGE__->table("patronimage"); Link Here
44
45
45
__PACKAGE__->add_columns(
46
__PACKAGE__->add_columns(
46
  "borrowernumber",
47
  "borrowernumber",
47
  { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
48
  {
49
    data_type      => "integer",
50
    default_value  => 0,
51
    is_foreign_key => 1,
52
    is_nullable    => 0,
53
  },
48
  "mimetype",
54
  "mimetype",
49
  { data_type => "varchar", is_nullable => 0, size => 15 },
55
  { data_type => "varchar", is_nullable => 0, size => 15 },
50
  "imagefile",
56
  "imagefile",
Lines 81-88 __PACKAGE__->belongs_to( Link Here
81
);
87
);
82
88
83
89
84
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
90
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-12-30 15:27:31
85
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:uuRGyWlemwOH1PCkvhqxdQ
91
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kyIvx7njXV5g9cDA4FspeQ
86
92
87
93
88
# You can replace this text with custom content, and it will be preserved on regeneration
94
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Session.pm (-4 / +4 lines)
Lines 32-38 __PACKAGE__->table("sessions"); Link Here
32
=head2 a_session
32
=head2 a_session
33
33
34
  data_type: 'mediumtext'
34
  data_type: 'mediumtext'
35
  is_nullable: 0
35
  is_nullable: 1
36
36
37
=cut
37
=cut
38
38
Lines 40-46 __PACKAGE__->add_columns( Link Here
40
  "id",
40
  "id",
41
  { data_type => "varchar", is_nullable => 0, size => 32 },
41
  { data_type => "varchar", is_nullable => 0, size => 32 },
42
  "a_session",
42
  "a_session",
43
  { data_type => "mediumtext", is_nullable => 0 },
43
  { data_type => "mediumtext", is_nullable => 1 },
44
);
44
);
45
45
46
=head1 PRIMARY KEY
46
=head1 PRIMARY KEY
Lines 56-63 __PACKAGE__->add_columns( Link Here
56
__PACKAGE__->set_primary_key("id");
56
__PACKAGE__->set_primary_key("id");
57
57
58
58
59
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-23 13:21:59
59
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-12-30 15:27:31
60
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:gsbP76fskUOelxUl8nAVMQ
60
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:cZjdYdeQLMm8UxaKKfLTYQ
61
61
62
62
63
# You can replace this text with custom content, and it will be preserved on regeneration
63
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Subscription.pm (-12 / +12 lines)
Lines 113-127 __PACKAGE__->table("subscription"); Link Here
113
  data_type: 'integer'
113
  data_type: 'integer'
114
  is_nullable: 1
114
  is_nullable: 1
115
115
116
=head2 innerloop1
116
=head2 lastvalue2
117
117
118
  data_type: 'integer'
118
  data_type: 'integer'
119
  default_value: 0
120
  is_nullable: 1
119
  is_nullable: 1
121
120
122
=head2 lastvalue2
121
=head2 innerloop1
123
122
124
  data_type: 'integer'
123
  data_type: 'integer'
124
  default_value: 0
125
  is_nullable: 1
125
  is_nullable: 1
126
126
127
=head2 innerloop2
127
=head2 innerloop2
Lines 130-144 __PACKAGE__->table("subscription"); Link Here
130
  default_value: 0
130
  default_value: 0
131
  is_nullable: 1
131
  is_nullable: 1
132
132
133
=head2 lastvalue3
133
=head2 innerloop3
134
134
135
  data_type: 'integer'
135
  data_type: 'integer'
136
  default_value: 0
136
  is_nullable: 1
137
  is_nullable: 1
137
138
138
=head2 innerloop3
139
=head2 lastvalue3
139
140
140
  data_type: 'integer'
141
  data_type: 'integer'
141
  default_value: 0
142
  is_nullable: 1
142
  is_nullable: 1
143
143
144
=head2 firstacquidate
144
=head2 firstacquidate
Lines 292-307 __PACKAGE__->add_columns( Link Here
292
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 100 },
292
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 100 },
293
  "lastvalue1",
293
  "lastvalue1",
294
  { data_type => "integer", is_nullable => 1 },
294
  { data_type => "integer", is_nullable => 1 },
295
  "innerloop1",
296
  { data_type => "integer", default_value => 0, is_nullable => 1 },
297
  "lastvalue2",
295
  "lastvalue2",
298
  { data_type => "integer", is_nullable => 1 },
296
  { data_type => "integer", is_nullable => 1 },
297
  "innerloop1",
298
  { data_type => "integer", default_value => 0, is_nullable => 1 },
299
  "innerloop2",
299
  "innerloop2",
300
  { data_type => "integer", default_value => 0, is_nullable => 1 },
300
  { data_type => "integer", default_value => 0, is_nullable => 1 },
301
  "lastvalue3",
302
  { data_type => "integer", is_nullable => 1 },
303
  "innerloop3",
301
  "innerloop3",
304
  { data_type => "integer", default_value => 0, is_nullable => 1 },
302
  { data_type => "integer", default_value => 0, is_nullable => 1 },
303
  "lastvalue3",
304
  { data_type => "integer", is_nullable => 1 },
305
  "firstacquidate",
305
  "firstacquidate",
306
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
306
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
307
  "manualhistory",
307
  "manualhistory",
Lines 429-436 __PACKAGE__->has_many( Link Here
429
);
429
);
430
430
431
431
432
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-07-11 09:26:55
432
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-12-30 15:27:31
433
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:57kc1/B3eNKQXAk9tlOy0A
433
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:mp9/FRyx50TbPwrjiwfvMw
434
434
435
435
436
# You can replace this text with custom content, and it will be preserved on regeneration
436
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Virtualshelve.pm (-2 / +17 lines)
Lines 47-52 __PACKAGE__->table("virtualshelves"); Link Here
47
  is_nullable: 1
47
  is_nullable: 1
48
  size: 1
48
  size: 1
49
49
50
=head2 useascarrousel
51
52
  data_type: 'tinyint'
53
  is_nullable: 1
54
50
=head2 sortfield
55
=head2 sortfield
51
56
52
  data_type: 'varchar'
57
  data_type: 'varchar'
Lines 86-91 __PACKAGE__->table("virtualshelves"); Link Here
86
  default_value: 0
91
  default_value: 0
87
  is_nullable: 1
92
  is_nullable: 1
88
93
94
=head2 addtocarrousel
95
96
  data_type: 'tinyint'
97
  default_value: 0
98
  is_nullable: 1
99
89
=cut
100
=cut
90
101
91
__PACKAGE__->add_columns(
102
__PACKAGE__->add_columns(
Lines 97-102 __PACKAGE__->add_columns( Link Here
97
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
108
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
98
  "category",
109
  "category",
99
  { data_type => "varchar", is_nullable => 1, size => 1 },
110
  { data_type => "varchar", is_nullable => 1, size => 1 },
111
  "useascarrousel",
112
  { data_type => "tinyint", is_nullable => 1 },
100
  "sortfield",
113
  "sortfield",
101
  {
114
  {
102
    data_type => "varchar",
115
    data_type => "varchar",
Lines 124-129 __PACKAGE__->add_columns( Link Here
124
  { data_type => "tinyint", default_value => 1, is_nullable => 1 },
137
  { data_type => "tinyint", default_value => 1, is_nullable => 1 },
125
  "allow_delete_other",
138
  "allow_delete_other",
126
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
139
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
140
  "addtocarrousel",
141
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
127
);
142
);
128
143
129
=head1 PRIMARY KEY
144
=head1 PRIMARY KEY
Lines 191-198 __PACKAGE__->has_many( Link Here
191
);
206
);
192
207
193
208
194
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-11-05 10:39:28
209
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-12-30 15:27:31
195
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:O3y89+0IUoePtcIHAqR+oA
210
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:npHiyjqUGJJwXU9Zo9X3SQ
196
211
197
212
198
# You can replace this text with custom content, and it will be preserved on regeneration
213
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Z3950server.pm (-2 / +10 lines)
Lines 120-125 __PACKAGE__->table("z3950servers"); Link Here
120
  data_type: 'mediumtext'
120
  data_type: 'mediumtext'
121
  is_nullable: 1
121
  is_nullable: 1
122
122
123
=head2 attributes
124
125
  data_type: 'varchar'
126
  is_nullable: 1
127
  size: 255
128
123
=cut
129
=cut
124
130
125
__PACKAGE__->add_columns(
131
__PACKAGE__->add_columns(
Lines 167-172 __PACKAGE__->add_columns( Link Here
167
  { data_type => "mediumtext", is_nullable => 1 },
173
  { data_type => "mediumtext", is_nullable => 1 },
168
  "add_xslt",
174
  "add_xslt",
169
  { data_type => "mediumtext", is_nullable => 1 },
175
  { data_type => "mediumtext", is_nullable => 1 },
176
  "attributes",
177
  { data_type => "varchar", is_nullable => 1, size => 255 },
170
);
178
);
171
179
172
=head1 PRIMARY KEY
180
=head1 PRIMARY KEY
Lines 182-189 __PACKAGE__->add_columns( Link Here
182
__PACKAGE__->set_primary_key("id");
190
__PACKAGE__->set_primary_key("id");
183
191
184
192
185
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-09-01 10:16:04
193
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-12-30 15:27:31
186
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:q0y03nGYIt0eDIVui0UUdw
194
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:XeNXCA+zQY0u3Z0ulYjOjQ
187
195
188
196
189
# You can replace this text with custom code or comments, and it will be preserved on regeneration
197
# You can replace this text with custom code or comments, and it will be preserved on regeneration
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (+1 lines)
Lines 239-244 function validate1(date) { Link Here
239
            <li><span class="label">Guarantor:</span><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% guarantorborrowernumber %]">[% guarantorsurname %][%IF ( guarantorfirstname ) %], [% guarantorfirstname %] [% END %]</a></li>
239
            <li><span class="label">Guarantor:</span><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% guarantorborrowernumber %]">[% guarantorsurname %][%IF ( guarantorfirstname ) %], [% guarantorfirstname %] [% END %]</a></li>
240
        [% END %]
240
        [% END %]
241
    [% END %]
241
    [% END %]
242
    <li><span class="label">Main contact method: </span>[% primary_contact_method %]</li>
242
</ol>
243
</ol>
243
</div>
244
</div>
244
      <div class="action">
245
      <div class="action">
(-)a/members/moremember.pl (-1 / +1 lines)
Lines 339-344 $template->param( Link Here
339
    borrowernumber  => $borrowernumber,
339
    borrowernumber  => $borrowernumber,
340
    othernames      => $data->{'othernames'},
340
    othernames      => $data->{'othernames'},
341
    categoryname    => $data->{'description'},
341
    categoryname    => $data->{'description'},
342
    primary_contact_method => $data->{'primary_contact_method'},
342
    was_renewed     => $input->param('was_renewed') ? 1 : 0,
343
    was_renewed     => $input->param('was_renewed') ? 1 : 0,
343
    branch          => $branch,
344
    branch          => $branch,
344
    todaysdate      => output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 }),
345
    todaysdate      => output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 }),
345
- 

Return to bug 11879