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

(-)a/Koha/Schema/Result/BiblioMetadata.pm (-2 / +9 lines)
Lines 59-64 __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 history
63
64
  data_type: 'longtext'
65
  is_nullable: 1
66
62
=cut
67
=cut
63
68
64
__PACKAGE__->add_columns(
69
__PACKAGE__->add_columns(
Lines 79-84 __PACKAGE__->add_columns( Link Here
79
    default_value => \"current_timestamp",
84
    default_value => \"current_timestamp",
80
    is_nullable => 0,
85
    is_nullable => 0,
81
  },
86
  },
87
  "history",
88
  { data_type => "longtext", is_nullable => 1 },
82
);
89
);
83
90
84
=head1 PRIMARY KEY
91
=head1 PRIMARY KEY
Lines 132-139 __PACKAGE__->belongs_to( Link Here
132
);
139
);
133
140
134
141
135
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-01-30 11:34:16
142
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-02-21 00:16:42
136
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FJk/YOw8Y/QRmmPPL3G5qQ
143
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:R+iWlj9FmE4X/VtbwKdm0g
137
144
138
sub koha_object_class {
145
sub koha_object_class {
139
    'Koha::Biblio::Metadata';
146
    'Koha::Biblio::Metadata';
(-)a/Koha/Schema/Result/DeletedbiblioMetadata.pm (-3 / +9 lines)
Lines 59-64 __PACKAGE__->table("deletedbiblio_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 history
63
64
  data_type: 'longtext'
65
  is_nullable: 1
66
62
=cut
67
=cut
63
68
64
__PACKAGE__->add_columns(
69
__PACKAGE__->add_columns(
Lines 79-84 __PACKAGE__->add_columns( Link Here
79
    default_value => \"current_timestamp",
84
    default_value => \"current_timestamp",
80
    is_nullable => 0,
85
    is_nullable => 0,
81
  },
86
  },
87
  "history",
88
  { data_type => "longtext", is_nullable => 1 },
82
);
89
);
83
90
84
=head1 PRIMARY KEY
91
=head1 PRIMARY KEY
Lines 132-139 __PACKAGE__->belongs_to( Link Here
132
);
139
);
133
140
134
141
135
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-01-30 11:34:16
142
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-02-21 00:16:42
136
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:JCOh+FSSTgPlC8lMJOdOOA
143
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8KWeUq/I9x894/IZgZtMZg
137
144
138
145
139
# You can replace this text with custom code or comments, and it will be preserved on regeneration
146
# You can replace this text with custom code or comments, and it will be preserved on regeneration
140
- 

Return to bug 14367