Bugzilla – Attachment 62697 Details for
Bug 6758
Capture membership renewal date for reporting purposes
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 6758 - Update Schema Files
Bug-6758---Update-Schema-Files.patch (text/plain), 4.36 KB, created by
Kyle M Hall (khall)
on 2017-04-25 17:55:06 UTC
(
hide
)
Description:
Bug 6758 - Update Schema Files
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2017-04-25 17:55:06 UTC
Size:
4.36 KB
patch
obsolete
>From 3b4e3126f5e7dff1eccf1b4e261fb960a40ca630 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Mon, 24 Apr 2017 23:28:49 +0000 >Subject: [PATCH] Bug 6758 - Update Schema Files > >--- > Koha/Schema/Result/Borrower.pm | 12 ++++++++++-- > Koha/Schema/Result/BorrowerModification.pm | 12 ++++++++++-- > Koha/Schema/Result/Deletedborrower.pm | 12 ++++++++++-- > 3 files changed, 30 insertions(+), 6 deletions(-) > >diff --git a/Koha/Schema/Result/Borrower.pm b/Koha/Schema/Result/Borrower.pm >index 547028f..9c3b255 100644 >--- a/Koha/Schema/Result/Borrower.pm >+++ b/Koha/Schema/Result/Borrower.pm >@@ -232,6 +232,12 @@ __PACKAGE__->table("borrowers"); > datetime_undef_if_invalid: 1 > is_nullable: 1 > >+=head2 date_renewed >+ >+ data_type: 'date' >+ datetime_undef_if_invalid: 1 >+ is_nullable: 1 >+ > =head2 gonenoaddress > > data_type: 'tinyint' >@@ -539,6 +545,8 @@ __PACKAGE__->add_columns( > { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, > "dateexpiry", > { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, >+ "date_renewed", >+ { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, > "gonenoaddress", > { data_type => "tinyint", is_nullable => 1 }, > "lost", >@@ -1341,8 +1349,8 @@ Composing rels: L</aqorder_users> -> ordernumber > __PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); > > >-# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-02-10 07:30:06 >-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:35WEsGd5LmkZ3bB486M1yA >+# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-04-24 23:37:35 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PuFTFgLp7/XhEH175oRYKA > > __PACKAGE__->belongs_to( > "guarantor", >diff --git a/Koha/Schema/Result/BorrowerModification.pm b/Koha/Schema/Result/BorrowerModification.pm >index af4895a..75a5bdb 100644 >--- a/Koha/Schema/Result/BorrowerModification.pm >+++ b/Koha/Schema/Result/BorrowerModification.pm >@@ -242,6 +242,12 @@ __PACKAGE__->table("borrower_modifications"); > datetime_undef_if_invalid: 1 > is_nullable: 1 > >+=head2 date_renewed >+ >+ data_type: 'date' >+ datetime_undef_if_invalid: 1 >+ is_nullable: 1 >+ > =head2 gonenoaddress > > data_type: 'tinyint' >@@ -513,6 +519,8 @@ __PACKAGE__->add_columns( > { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, > "dateexpiry", > { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, >+ "date_renewed", >+ { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, > "gonenoaddress", > { data_type => "tinyint", is_nullable => 1 }, > "lost", >@@ -590,8 +598,8 @@ __PACKAGE__->add_columns( > __PACKAGE__->set_primary_key("verification_token", "borrowernumber"); > > >-# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-12-12 20:04:12 >-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:IZNhBX5Bj+x4S8JCWG+7lA >+# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-04-24 23:37:35 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:z5Clv2iB+tgwqf+MNkk+NQ > > > # You can replace this text with custom content, and it will be preserved on regeneration >diff --git a/Koha/Schema/Result/Deletedborrower.pm b/Koha/Schema/Result/Deletedborrower.pm >index 778705e..21f0d23 100644 >--- a/Koha/Schema/Result/Deletedborrower.pm >+++ b/Koha/Schema/Result/Deletedborrower.pm >@@ -230,6 +230,12 @@ __PACKAGE__->table("deletedborrowers"); > datetime_undef_if_invalid: 1 > is_nullable: 1 > >+=head2 date_renewed >+ >+ data_type: 'date' >+ datetime_undef_if_invalid: 1 >+ is_nullable: 1 >+ > =head2 gonenoaddress > > data_type: 'tinyint' >@@ -524,6 +530,8 @@ __PACKAGE__->add_columns( > { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, > "dateexpiry", > { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, >+ "date_renewed", >+ { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, > "gonenoaddress", > { data_type => "tinyint", is_nullable => 1 }, > "lost", >@@ -611,8 +619,8 @@ __PACKAGE__->add_columns( > ); > > >-# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-02-10 07:30:06 >-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:tq4JDUSFKuU5K69TTVSkVg >+# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-04-24 23:28:14 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:m7zTDyvZAShABT/22RNjaA > > > # You can replace this text with custom code or comments, and it will be preserved on regeneration >-- >2.10.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 6758
:
62696
|
62697
|
62698
|
62699
|
62929
|
65490
|
65491
|
65492
|
67218
|
67219