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

(-)a/Koha/Schema/Result/BiblioMetadata.pm (-3 / +9 lines)
Lines 52-57 __PACKAGE__->table("biblio_metadata"); Link Here
52
  data_type: 'longtext'
52
  data_type: 'longtext'
53
  is_nullable: 0
53
  is_nullable: 0
54
54
55
=head2 history
56
57
  data_type: 'longtext'
58
  is_nullable: 1
59
55
=head2 timestamp
60
=head2 timestamp
56
61
57
  data_type: 'timestamp'
62
  data_type: 'timestamp'
Lines 72-77 __PACKAGE__->add_columns( Link Here
72
  { data_type => "varchar", is_nullable => 0, size => 16 },
77
  { data_type => "varchar", is_nullable => 0, size => 16 },
73
  "metadata",
78
  "metadata",
74
  { data_type => "longtext", is_nullable => 0 },
79
  { data_type => "longtext", is_nullable => 0 },
80
  "history",
81
  { data_type => "longtext", is_nullable => 1 },
75
  "timestamp",
82
  "timestamp",
76
  {
83
  {
77
    data_type => "timestamp",
84
    data_type => "timestamp",
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.07046 @ 2022-03-02 12:44:56
136
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FJk/YOw8Y/QRmmPPL3G5qQ
143
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:r1F1KyHWaBD813Ikoa95+g
137
144
138
sub koha_object_class {
145
sub koha_object_class {
139
    'Koha::Biblio::Metadata';
146
    'Koha::Biblio::Metadata';
140
- 

Return to bug 14367