From 892d26cc26a3397eab1be2f72f615247a6fcd41c Mon Sep 17 00:00:00 2001 From: Mark Tompsett Date: Thu, 31 Dec 2015 16:49:31 -0500 Subject: [PATCH] Bug 9021: Schema update This ensures that the DBIx structure matches the SQL structure changes. See comment #48 as to how this was generated. Also, I had to modify misc/devel/update_dbix_class_files.pl to have an "overwrite_modifications => 1" option to get it to generate. This should correct issues raised in comment #45. Signed-off-by: Mark Tompsett --- Koha/Schema/Result/Borrower.pm | 32 +++++++++++- Koha/Schema/Result/SmsProvider.pm | 104 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 134 insertions(+), 2 deletions(-) create mode 100644 Koha/Schema/Result/SmsProvider.pm diff --git a/Koha/Schema/Result/Borrower.pm b/Koha/Schema/Result/Borrower.pm index 97f65d0..4094b44 100644 --- a/Koha/Schema/Result/Borrower.pm +++ b/Koha/Schema/Result/Borrower.pm @@ -389,6 +389,12 @@ __PACKAGE__->table("borrowers"); is_nullable: 1 size: 50 +=head2 sms_provider_id + + data_type: 'integer' + is_foreign_key: 1 + is_nullable: 1 + =head2 privacy data_type: 'integer' @@ -564,6 +570,8 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 1, size => 50 }, "smsalertnumber", { data_type => "varchar", is_nullable => 1, size => 50 }, + "sms_provider_id", + { data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, "privacy", { data_type => "integer", default_value => 1, is_nullable => 0 }, "privacy_guarantor_checkouts", @@ -1030,6 +1038,26 @@ __PACKAGE__->has_many( { cascade_copy => 0, cascade_delete => 0 }, ); +=head2 sms_provider + +Type: belongs_to + +Related object: L + +=cut + +__PACKAGE__->belongs_to( + "sms_provider", + "Koha::Schema::Result::SmsProvider", + { id => "sms_provider_id" }, + { + is_deferrable => 1, + join_type => "LEFT", + on_delete => "RESTRICT", + on_update => "RESTRICT", + }, +); + =head2 subscriptionroutinglists Type: has_many @@ -1176,8 +1204,8 @@ Composing rels: L -> ordernumber __PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-01-06 11:59:52 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0nIBbkzhb+Yfp6qpSLo51A +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-12-31 16:48:38 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:dd1tdtsFTruFwsmCZU6ogQ __PACKAGE__->belongs_to( "guarantor", diff --git a/Koha/Schema/Result/SmsProvider.pm b/Koha/Schema/Result/SmsProvider.pm new file mode 100644 index 0000000..f9015ea --- /dev/null +++ b/Koha/Schema/Result/SmsProvider.pm @@ -0,0 +1,104 @@ +use utf8; +package Koha::Schema::Result::SmsProvider; + +# Created by DBIx::Class::Schema::Loader +# DO NOT MODIFY THE FIRST PART OF THIS FILE + +=head1 NAME + +Koha::Schema::Result::SmsProvider + +=cut + +use strict; +use warnings; + +use base 'DBIx::Class::Core'; + +=head1 TABLE: C + +=cut + +__PACKAGE__->table("sms_providers"); + +=head1 ACCESSORS + +=head2 id + + data_type: 'integer' + is_auto_increment: 1 + is_nullable: 0 + +=head2 name + + data_type: 'varchar' + is_nullable: 0 + size: 255 + +=head2 domain + + data_type: 'varchar' + is_nullable: 0 + size: 255 + +=cut + +__PACKAGE__->add_columns( + "id", + { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, + "name", + { data_type => "varchar", is_nullable => 0, size => 255 }, + "domain", + { data_type => "varchar", is_nullable => 0, size => 255 }, +); + +=head1 PRIMARY KEY + +=over 4 + +=item * L + +=back + +=cut + +__PACKAGE__->set_primary_key("id"); + +=head1 UNIQUE CONSTRAINTS + +=head2 C + +=over 4 + +=item * L + +=back + +=cut + +__PACKAGE__->add_unique_constraint("name", ["name"]); + +=head1 RELATIONS + +=head2 borrowers + +Type: has_many + +Related object: L + +=cut + +__PACKAGE__->has_many( + "borrowers", + "Koha::Schema::Result::Borrower", + { "foreign.sms_provider_id" => "self.id" }, + { cascade_copy => 0, cascade_delete => 0 }, +); + + +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-12-31 16:48:38 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:U3LGi1zy3YN2Amin+bhXlA + + +# You can replace this text with custom code or comments, and it will be preserved on regeneration +1; -- 2.1.4