@@ -, +, @@ --- Koha/Schema/Result/CollectionTracking.pm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) --- a/Koha/Schema/Result/CollectionTracking.pm +++ a/Koha/Schema/Result/CollectionTracking.pm @@ -23,7 +23,7 @@ __PACKAGE__->table("collections_tracking"); =head1 ACCESSORS -=head2 ctid +=head2 collections_tracking_id data_type: 'integer' is_auto_increment: 1 @@ -48,7 +48,7 @@ items.itemnumber =cut __PACKAGE__->add_columns( - "ctid", + "collections_tracking_id", { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, "colid", { data_type => "integer", default_value => 0, is_nullable => 0 }, @@ -60,17 +60,17 @@ __PACKAGE__->add_columns( =over 4 -=item * L +=item * L =back =cut -__PACKAGE__->set_primary_key("ctid"); +__PACKAGE__->set_primary_key("collections_tracking_id"); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:izGaZGUJvwrRTQOCotopUg +# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-12-11 16:55:09 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CAKCBAZ44Q6yAS2IKOMNlA # You can replace this text with custom content, and it will be preserved on regeneration --