DO NOT PUSH: Add Housebound Schema files.
authorAlex Sassmannshausen <alex.sassmannshausen@ptfs-europe.com>
Fri, 27 May 2016 12:08:23 +0000 (12:08 +0000)
committerKyle M Hall <kyle@bywatersolutions.com>
Fri, 21 Oct 2016 18:17:56 +0000 (18:17 +0000)
* 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>
Koha/Schema/Result/HouseboundProfile.pm [new file with mode: 0644]
Koha/Schema/Result/HouseboundVisit.pm [new file with mode: 0644]

diff --git a/Koha/Schema/Result/HouseboundProfile.pm b/Koha/Schema/Result/HouseboundProfile.pm
new file mode 100644 (file)
index 0000000..1661eb5
--- /dev/null
@@ -0,0 +1,138 @@
+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;
diff --git a/Koha/Schema/Result/HouseboundVisit.pm b/Koha/Schema/Result/HouseboundVisit.pm
new file mode 100644 (file)
index 0000000..ae8c5d6
--- /dev/null
@@ -0,0 +1,154 @@
+use utf8;
+package Koha::Schema::Result::HouseboundVisit;
+
+# Created by DBIx::Class::Schema::Loader
+# DO NOT MODIFY THE FIRST PART OF THIS FILE
+
+=head1 NAME
+
+Koha::Schema::Result::HouseboundVisit
+
+=cut
+
+use strict;
+use warnings;
+
+use base 'DBIx::Class::Core';
+
+=head1 TABLE: C<housebound_visit>
+
+=cut
+
+__PACKAGE__->table("housebound_visit");
+
+=head1 ACCESSORS
+
+=head2 id
+
+  data_type: 'integer'
+  is_auto_increment: 1
+  is_nullable: 0
+
+=head2 borrowernumber
+
+  data_type: 'integer'
+  is_foreign_key: 1
+  is_nullable: 0
+
+=head2 appointment_date
+
+  data_type: 'date'
+  datetime_undef_if_invalid: 1
+  is_nullable: 1
+
+=head2 day_segment
+
+  data_type: 'varchar'
+  is_nullable: 1
+  size: 10
+
+=head2 chooser_brwnumber
+
+  data_type: 'integer'
+  is_foreign_key: 1
+  is_nullable: 1
+
+=head2 deliverer_brwnumber
+
+  data_type: 'integer'
+  is_foreign_key: 1
+  is_nullable: 1
+
+=cut
+
+__PACKAGE__->add_columns(
+  "id",
+  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
+  "borrowernumber",
+  { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
+  "appointment_date",
+  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
+  "day_segment",
+  { data_type => "varchar", is_nullable => 1, size => 10 },
+  "chooser_brwnumber",
+  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
+  "deliverer_brwnumber",
+  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
+);
+
+=head1 PRIMARY KEY
+
+=over 4
+
+=item * L</id>
+
+=back
+
+=cut
+
+__PACKAGE__->set_primary_key("id");
+
+=head1 RELATIONS
+
+=head2 borrowernumber
+
+Type: belongs_to
+
+Related object: L<Koha::Schema::Result::HouseboundProfile>
+
+=cut
+
+__PACKAGE__->belongs_to(
+  "borrowernumber",
+  "Koha::Schema::Result::HouseboundProfile",
+  { borrowernumber => "borrowernumber" },
+  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
+);
+
+=head2 chooser_brwnumber
+
+Type: belongs_to
+
+Related object: L<Koha::Schema::Result::Borrower>
+
+=cut
+
+__PACKAGE__->belongs_to(
+  "chooser_brwnumber",
+  "Koha::Schema::Result::Borrower",
+  { borrowernumber => "chooser_brwnumber" },
+  {
+    is_deferrable => 1,
+    join_type     => "LEFT",
+    on_delete     => "CASCADE",
+    on_update     => "CASCADE",
+  },
+);
+
+=head2 deliverer_brwnumber
+
+Type: belongs_to
+
+Related object: L<Koha::Schema::Result::Borrower>
+
+=cut
+
+__PACKAGE__->belongs_to(
+  "deliverer_brwnumber",
+  "Koha::Schema::Result::Borrower",
+  { borrowernumber => "deliverer_brwnumber" },
+  {
+    is_deferrable => 1,
+    join_type     => "LEFT",
+    on_delete     => "CASCADE",
+    on_update     => "CASCADE",
+  },
+);
+
+
+# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-04-25 13:21:23
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5zyc7l2BtF5cgpZeKbJNZg
+
+
+# You can replace this text with custom code or comments, and it will be preserved on regeneration
+1;