Koha/Koha/Schema/Result/HouseboundProfile.pm
Alex Sassmannshausen 7887cb0d93 DO NOT PUSH: Add Housebound Schema files.
* Koha/Schema/Result/HouseboundProfile.pm: New file.
* Koha/Schema/Result/HouseboundVisit.pm: New file.

https://bugs.koha-community.org/show_bug.cgi?id=5670

Signed-off-by: Claire Gravely <claire_gravely@hotmail.com>
2016-10-21 18:17:56 +00:00

138 lines
2.3 KiB
Perl

use utf8;
package Koha::Schema::Result::HouseboundProfile;
# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE
=head1 NAME
Koha::Schema::Result::HouseboundProfile
=cut
use strict;
use warnings;
use base 'DBIx::Class::Core';
=head1 TABLE: C<housebound_profile>
=cut
__PACKAGE__->table("housebound_profile");
=head1 ACCESSORS
=head2 borrowernumber
data_type: 'integer'
is_foreign_key: 1
is_nullable: 0
=head2 day
data_type: 'text'
is_nullable: 0
=head2 frequency
data_type: 'text'
is_nullable: 0
=head2 fav_itemtypes
data_type: 'text'
is_nullable: 1
=head2 fav_subjects
data_type: 'text'
is_nullable: 1
=head2 fav_authors
data_type: 'text'
is_nullable: 1
=head2 referral
data_type: 'text'
is_nullable: 1
=head2 notes
data_type: 'text'
is_nullable: 1
=cut
__PACKAGE__->add_columns(
"borrowernumber",
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
"day",
{ data_type => "text", is_nullable => 0 },
"frequency",
{ data_type => "text", is_nullable => 0 },
"fav_itemtypes",
{ data_type => "text", is_nullable => 1 },
"fav_subjects",
{ data_type => "text", is_nullable => 1 },
"fav_authors",
{ data_type => "text", is_nullable => 1 },
"referral",
{ data_type => "text", is_nullable => 1 },
"notes",
{ data_type => "text", is_nullable => 1 },
);
=head1 PRIMARY KEY
=over 4
=item * L</borrowernumber>
=back
=cut
__PACKAGE__->set_primary_key("borrowernumber");
=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" },
);
=head2 housebound_visits
Type: has_many
Related object: L<Koha::Schema::Result::HouseboundVisit>
=cut
__PACKAGE__->has_many(
"housebound_visits",
"Koha::Schema::Result::HouseboundVisit",
{ "foreign.borrowernumber" => "self.borrowernumber" },
{ cascade_copy => 0, cascade_delete => 0 },
);
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-04-25 13:21:23
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kY+BhDo9g/YCShkmFUVDYA
# You can replace this text with custom code or comments, and it will be preserved on regeneration
1;