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

(-)a/Koha/Schema/Result/Biblio.pm (-4 / +4 lines)
Lines 89-95 __PACKAGE__->table("biblio"); Link Here
89
  data_type: 'longtext'
89
  data_type: 'longtext'
90
  is_nullable: 1
90
  is_nullable: 1
91
91
92
=head2 deleted_at
92
=head2 deleted_on
93
93
94
  data_type: 'datetime'
94
  data_type: 'datetime'
95
  datetime_undef_if_invalid: 1
95
  datetime_undef_if_invalid: 1
Lines 127-133 __PACKAGE__->add_columns( Link Here
127
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 0 },
127
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 0 },
128
  "abstract",
128
  "abstract",
129
  { data_type => "longtext", is_nullable => 1 },
129
  { data_type => "longtext", is_nullable => 1 },
130
  "deleted_at",
130
  "deleted_on",
131
  {
131
  {
132
    data_type => "datetime",
132
    data_type => "datetime",
133
    datetime_undef_if_invalid => 1,
133
    datetime_undef_if_invalid => 1,
Lines 360-366 __PACKAGE__->has_many( Link Here
360
);
360
);
361
361
362
362
363
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-05-11 12:03:24
363
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-06-08 09:34:53
364
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:L2njvoe0LRdIdDsAEaye9w
364
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Gvv2jiMzhIa2osCaj3Ow6g
365
365
366
1;
366
1;
(-)a/Koha/Schema/Result/BiblioMetadata.pm (-4 / +4 lines)
Lines 59-65 __PACKAGE__->table("biblio_metadata"); Link Here
59
  default_value: current_timestamp
59
  default_value: current_timestamp
60
  is_nullable: 0
60
  is_nullable: 0
61
61
62
=head2 deleted_at
62
=head2 deleted_on
63
63
64
  data_type: 'datetime'
64
  data_type: 'datetime'
65
  datetime_undef_if_invalid: 1
65
  datetime_undef_if_invalid: 1
Lines 85-91 __PACKAGE__->add_columns( Link Here
85
    default_value => \"current_timestamp",
85
    default_value => \"current_timestamp",
86
    is_nullable => 0,
86
    is_nullable => 0,
87
  },
87
  },
88
  "deleted_at",
88
  "deleted_on",
89
  {
89
  {
90
    data_type => "datetime",
90
    data_type => "datetime",
91
    datetime_undef_if_invalid => 1,
91
    datetime_undef_if_invalid => 1,
Lines 144-151 __PACKAGE__->belongs_to( Link Here
144
);
144
);
145
145
146
146
147
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-05-11 12:03:24
147
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-06-08 09:34:53
148
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:xEPDWp2+ol9WHDULIaCtOg
148
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:maczivwd2YXoRrx0Sc4DIQ
149
149
150
150
151
# You can replace this text with custom code or comments, and it will be preserved on regeneration
151
# You can replace this text with custom code or comments, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Biblioitem.pm (-4 / +4 lines)
Lines 202-208 __PACKAGE__->table("biblioitems"); Link Here
202
  data_type: 'integer'
202
  data_type: 'integer'
203
  is_nullable: 1
203
  is_nullable: 1
204
204
205
=head2 deleted_at
205
=head2 deleted_on
206
206
207
  data_type: 'datetime'
207
  data_type: 'datetime'
208
  datetime_undef_if_invalid: 1
208
  datetime_undef_if_invalid: 1
Lines 285-291 __PACKAGE__->add_columns( Link Here
285
  { data_type => "varchar", is_nullable => 1, size => 255 },
285
  { data_type => "varchar", is_nullable => 1, size => 255 },
286
  "totalissues",
286
  "totalissues",
287
  { data_type => "integer", is_nullable => 1 },
287
  { data_type => "integer", is_nullable => 1 },
288
  "deleted_at",
288
  "deleted_on",
289
  {
289
  {
290
    data_type => "datetime",
290
    data_type => "datetime",
291
    datetime_undef_if_invalid => 1,
291
    datetime_undef_if_invalid => 1,
Lines 338-345 __PACKAGE__->has_many( Link Here
338
);
338
);
339
339
340
340
341
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-05-11 12:03:24
341
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-06-08 09:34:53
342
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:uvdBu01oA3TCk0mm2jlhPA
342
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:SFGaiPvH2Va7AySY+qErWQ
343
343
344
__PACKAGE__->belongs_to( biblio => "Koha::Schema::Result::Biblio", "biblionumber" );
344
__PACKAGE__->belongs_to( biblio => "Koha::Schema::Result::Biblio", "biblionumber" );
345
345
(-)a/Koha/Schema/Result/Item.pm (-5 / +4 lines)
Lines 286-292 __PACKAGE__->table("items"); Link Here
286
  is_nullable: 1
286
  is_nullable: 1
287
  size: 32
287
  size: 32
288
288
289
=head2 deleted_at
289
=head2 deleted_on
290
290
291
  data_type: 'datetime'
291
  data_type: 'datetime'
292
  datetime_undef_if_invalid: 1
292
  datetime_undef_if_invalid: 1
Lines 412-418 __PACKAGE__->add_columns( Link Here
412
  { data_type => "varchar", is_nullable => 1, size => 32 },
412
  { data_type => "varchar", is_nullable => 1, size => 32 },
413
  "new_status",
413
  "new_status",
414
  { data_type => "varchar", is_nullable => 1, size => 32 },
414
  { data_type => "varchar", is_nullable => 1, size => 32 },
415
  "deleted_at",
415
  "deleted_on",
416
  {
416
  {
417
    data_type => "datetime",
417
    data_type => "datetime",
418
    datetime_undef_if_invalid => 1,
418
    datetime_undef_if_invalid => 1,
Lines 699-706 __PACKAGE__->might_have( Link Here
699
);
699
);
700
700
701
701
702
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-05-11 12:03:24
702
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-06-08 09:34:53
703
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:sTN/r9L4MvFONFQnopRNrg
703
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:mNzP0a/eqWMygxD2VfAAkA
704
704
705
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
705
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
706
706
707
- 

Return to bug 20271