Bug 13539: (RM followup) DBIx schema update
authorTomas Cohen Arazi <tomascohen@gmail.com>
Mon, 13 Apr 2015 16:26:06 +0000 (13:26 -0300)
committerTomas Cohen Arazi <tomascohen@gmail.com>
Mon, 13 Apr 2015 16:26:06 +0000 (13:26 -0300)
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
Koha/Schema/Result/Borrower.pm
Koha/Schema/Result/Patroncard.pm [deleted file]

index dd2232b..04b7c8d 100644 (file)
@@ -933,21 +933,6 @@ __PACKAGE__->has_many(
   { cascade_copy => 0, cascade_delete => 0 },
 );
 
-=head2 patroncards
-
-Type: has_many
-
-Related object: L<Koha::Schema::Result::Patroncard>
-
-=cut
-
-__PACKAGE__->has_many(
-  "patroncards",
-  "Koha::Schema::Result::Patroncard",
-  { "foreign.borrowernumber" => "self.borrowernumber" },
-  { cascade_copy => 0, cascade_delete => 0 },
-);
-
 =head2 patronimage
 
 Type: might_have
@@ -1154,8 +1139,8 @@ Composing rels: L</aqorder_users> -> ordernumber
 __PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
 
 
-# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-03-11 11:50:38
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4wVgO/FIFHQV+AxzXc+k8g
+# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-13 13:23:31
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:eNJqc7s8OA+vQIKYUryvaA
 
 
 # You can replace this text with custom content, and it will be preserved on regeneration
diff --git a/Koha/Schema/Result/Patroncard.pm b/Koha/Schema/Result/Patroncard.pm
deleted file mode 100644 (file)
index 454e958..0000000
+++ /dev/null
@@ -1,105 +0,0 @@
-use utf8;
-package Koha::Schema::Result::Patroncard;
-
-# Created by DBIx::Class::Schema::Loader
-# DO NOT MODIFY THE FIRST PART OF THIS FILE
-
-=head1 NAME
-
-Koha::Schema::Result::Patroncard
-
-=cut
-
-use strict;
-use warnings;
-
-use base 'DBIx::Class::Core';
-
-=head1 TABLE: C<patroncards>
-
-=cut
-
-__PACKAGE__->table("patroncards");
-
-=head1 ACCESSORS
-
-=head2 cardid
-
-  data_type: 'integer'
-  is_auto_increment: 1
-  is_nullable: 0
-
-=head2 batch_id
-
-  data_type: 'varchar'
-  default_value: 1
-  is_nullable: 0
-  size: 10
-
-=head2 borrowernumber
-
-  data_type: 'integer'
-  is_foreign_key: 1
-  is_nullable: 0
-
-=head2 timestamp
-
-  data_type: 'timestamp'
-  datetime_undef_if_invalid: 1
-  default_value: current_timestamp
-  is_nullable: 0
-
-=cut
-
-__PACKAGE__->add_columns(
-  "cardid",
-  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
-  "batch_id",
-  { data_type => "varchar", default_value => 1, is_nullable => 0, size => 10 },
-  "borrowernumber",
-  { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
-  "timestamp",
-  {
-    data_type => "timestamp",
-    datetime_undef_if_invalid => 1,
-    default_value => \"current_timestamp",
-    is_nullable => 0,
-  },
-);
-
-=head1 PRIMARY KEY
-
-=over 4
-
-=item * L</cardid>
-
-=back
-
-=cut
-
-__PACKAGE__->set_primary_key("cardid");
-
-=head1 RELATIONS
-
-=head2 borrowernumber
-
-Type: belongs_to
-
-Related object: L<Koha::Schema::Result::Borrower>
-
-=cut
-
-__PACKAGE__->belongs_to(
-  "borrowernumber",
-  "Koha::Schema::Result::Borrower",
-  { borrowernumber => "borrowernumber" },
-  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
-);
-
-
-# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ZDpN4iw7+y9YP7Dc+ou8lQ
-
-
-# You can replace this text with custom content, and it will be preserved on regeneration
-1;