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

(-)a/Koha/Schema/Result/Biblioitem.pm (-2 / +10 lines)
Lines 203-208 __PACKAGE__->table("biblioitems"); Link Here
203
  data_type: 'integer'
203
  data_type: 'integer'
204
  is_nullable: 1
204
  is_nullable: 1
205
205
206
=head2 last_mana_update
207
208
  data_type: 'date'
209
  datetime_undef_if_invalid: 1
210
  is_nullable: 1
211
206
=cut
212
=cut
207
213
208
__PACKAGE__->add_columns(
214
__PACKAGE__->add_columns(
Lines 280-285 __PACKAGE__->add_columns( Link Here
280
  { data_type => "varchar", is_nullable => 1, size => 255 },
286
  { data_type => "varchar", is_nullable => 1, size => 255 },
281
  "totalissues",
287
  "totalissues",
282
  { data_type => "integer", is_nullable => 1 },
288
  { data_type => "integer", is_nullable => 1 },
289
  "last_mana_update",
290
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
283
);
291
);
284
292
285
=head1 PRIMARY KEY
293
=head1 PRIMARY KEY
Lines 327-334 __PACKAGE__->has_many( Link Here
327
);
335
);
328
336
329
337
330
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-01-13 08:36:25
338
# Created by DBIx::Class::Schema::Loader v0.07045 @ 2017-07-04 15:28:15
331
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:cAlg2aIZ7hxeq+Hgl1AJcA
339
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CYMMpHcvFwn0hMdmRQsELA
332
340
333
__PACKAGE__->belongs_to( biblio => "Koha::Schema::Result::Biblio", "biblionumber" );
341
__PACKAGE__->belongs_to( biblio => "Koha::Schema::Result::Biblio", "biblionumber" );
334
342
(-)a/Koha/Schema/Result/Review.pm (-3 / +23 lines)
Lines 63-68 __PACKAGE__->table("reviews"); Link Here
63
  data_type: 'integer'
63
  data_type: 'integer'
64
  is_nullable: 1
64
  is_nullable: 1
65
65
66
=head2 mana_id
67
68
  data_type: 'integer'
69
  is_nullable: 1
70
66
=cut
71
=cut
67
72
68
__PACKAGE__->add_columns(
73
__PACKAGE__->add_columns(
Lines 84-89 __PACKAGE__->add_columns( Link Here
84
  },
89
  },
85
  "share_auth",
90
  "share_auth",
86
  { data_type => "integer", is_nullable => 1 },
91
  { data_type => "integer", is_nullable => 1 },
92
  "mana_id",
93
  { data_type => "integer", is_nullable => 1 },
87
);
94
);
88
95
89
=head1 PRIMARY KEY
96
=head1 PRIMARY KEY
Lines 98-103 __PACKAGE__->add_columns( Link Here
98
105
99
__PACKAGE__->set_primary_key("reviewid");
106
__PACKAGE__->set_primary_key("reviewid");
100
107
108
=head1 UNIQUE CONSTRAINTS
109
110
=head2 C<mana_id>
111
112
=over 4
113
114
=item * L</mana_id>
115
116
=back
117
118
=cut
119
120
__PACKAGE__->add_unique_constraint("mana_id", ["mana_id"]);
121
101
=head1 RELATIONS
122
=head1 RELATIONS
102
123
103
=head2 biblionumber
124
=head2 biblionumber
Lines 141-148 __PACKAGE__->belongs_to( Link Here
141
);
162
);
142
163
143
164
144
# Created by DBIx::Class::Schema::Loader v0.07045 @ 2017-07-04 13:26:58
165
# Created by DBIx::Class::Schema::Loader v0.07045 @ 2017-07-04 15:28:16
145
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PXakyUIfMDbtvEf0fkBeug
166
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ZQbkATMfvd34ijVgNenjNg
146
167
147
168
148
# You can replace this text with custom content, and it will be preserved on regeneration
169
# You can replace this text with custom content, and it will be preserved on regeneration
149
- 

Return to bug 18922