From ae4d8942925d1515fdb759fdbf27bf4944c3b158 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 27 Oct 2017 13:26:51 -0300 Subject: [PATCH] Bug 13178: DBIC Schema changes Signed-off-by: Jonathan Druart --- Koha/Schema/Result/Borrower.pm | 8 ++++---- Koha/Schema/Result/BorrowerModification.pm | 8 ++++---- Koha/Schema/Result/Deletedborrower.pm | 8 ++++---- Koha/Schema/Result/PendingOfflineOperation.pm | 8 ++++---- Koha/Schema/Result/TmpHoldsqueue.pm | 8 ++++---- 5 files changed, 20 insertions(+), 20 deletions(-) diff --git a/Koha/Schema/Result/Borrower.pm b/Koha/Schema/Result/Borrower.pm index bac998959c..c84418bd94 100644 --- a/Koha/Schema/Result/Borrower.pm +++ b/Koha/Schema/Result/Borrower.pm @@ -33,7 +33,7 @@ __PACKAGE__->table("borrowers"); data_type: 'varchar' is_nullable: 1 - size: 16 + size: 32 =head2 surname @@ -457,7 +457,7 @@ __PACKAGE__->add_columns( "borrowernumber", { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, "cardnumber", - { data_type => "varchar", is_nullable => 1, size => 16 }, + { data_type => "varchar", is_nullable => 1, size => 32 }, "surname", { data_type => "mediumtext", is_nullable => 0 }, "firstname", @@ -1371,8 +1371,8 @@ Composing rels: L -> ordernumber __PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-10-20 16:27:04 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5pHsZTeeMmLw1Y4f4l3qng +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-10-27 13:24:06 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vWgO9UIYOpDt7Pp09KFcYA __PACKAGE__->belongs_to( "guarantor", diff --git a/Koha/Schema/Result/BorrowerModification.pm b/Koha/Schema/Result/BorrowerModification.pm index c6b01dcd9b..2b0977d4b3 100644 --- a/Koha/Schema/Result/BorrowerModification.pm +++ b/Koha/Schema/Result/BorrowerModification.pm @@ -47,7 +47,7 @@ __PACKAGE__->table("borrower_modifications"); data_type: 'varchar' is_nullable: 1 - size: 16 + size: 32 =head2 surname @@ -430,7 +430,7 @@ __PACKAGE__->add_columns( "borrowernumber", { data_type => "integer", default_value => 0, is_nullable => 0 }, "cardnumber", - { data_type => "varchar", is_nullable => 1, size => 16 }, + { data_type => "varchar", is_nullable => 1, size => 32 }, "surname", { data_type => "mediumtext", is_nullable => 1 }, "firstname", @@ -598,8 +598,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("verification_token", "borrowernumber"); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-09-19 03:00:28 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:k+pL864IIHY6NP9y9MMWAw +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-10-27 13:24:06 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PUS/k4r20connTfZWAWmxg # 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 e961de4abe..e4df081353 100644 --- a/Koha/Schema/Result/Deletedborrower.pm +++ b/Koha/Schema/Result/Deletedborrower.pm @@ -33,7 +33,7 @@ __PACKAGE__->table("deletedborrowers"); data_type: 'varchar' is_nullable: 1 - size: 16 + size: 32 =head2 surname @@ -454,7 +454,7 @@ __PACKAGE__->add_columns( "borrowernumber", { data_type => "integer", default_value => 0, is_nullable => 0 }, "cardnumber", - { data_type => "varchar", is_nullable => 1, size => 16 }, + { data_type => "varchar", is_nullable => 1, size => 32 }, "surname", { data_type => "mediumtext", is_nullable => 0 }, "firstname", @@ -641,8 +641,8 @@ __PACKAGE__->add_columns( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-09-19 03:00:28 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Q3cG0PLX/T3axMdO0MiSug +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-10-27 13:24:06 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LZK8S3YPK3zZAhH28j8gng # You can replace this text with custom code or comments, and it will be preserved on regeneration diff --git a/Koha/Schema/Result/PendingOfflineOperation.pm b/Koha/Schema/Result/PendingOfflineOperation.pm index 969d38077c..37e791880d 100644 --- a/Koha/Schema/Result/PendingOfflineOperation.pm +++ b/Koha/Schema/Result/PendingOfflineOperation.pm @@ -64,7 +64,7 @@ __PACKAGE__->table("pending_offline_operations"); data_type: 'varchar' is_nullable: 1 - size: 16 + size: 32 =head2 amount @@ -93,7 +93,7 @@ __PACKAGE__->add_columns( "barcode", { data_type => "varchar", is_nullable => 1, size => 20 }, "cardnumber", - { data_type => "varchar", is_nullable => 1, size => 16 }, + { data_type => "varchar", is_nullable => 1, size => 32 }, "amount", { data_type => "decimal", is_nullable => 1, size => [28, 6] }, ); @@ -111,8 +111,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("operationid"); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hU8G7b8om2DKesFTwuGrJA +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-10-27 13:24:06 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EA2gwvRWvFVCPyIB94jCdw # You can replace this text with custom content, and it will be preserved on regeneration diff --git a/Koha/Schema/Result/TmpHoldsqueue.pm b/Koha/Schema/Result/TmpHoldsqueue.pm index 9f2a8e452b..5a0f4bf2d8 100644 --- a/Koha/Schema/Result/TmpHoldsqueue.pm +++ b/Koha/Schema/Result/TmpHoldsqueue.pm @@ -63,7 +63,7 @@ __PACKAGE__->table("tmp_holdsqueue"); data_type: 'varchar' is_nullable: 1 - size: 16 + size: 32 =head2 reservedate @@ -123,7 +123,7 @@ __PACKAGE__->add_columns( "borrowernumber", { data_type => "integer", is_nullable => 0 }, "cardnumber", - { data_type => "varchar", is_nullable => 1, size => 16 }, + { data_type => "varchar", is_nullable => 1, size => 32 }, "reservedate", { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, "title", @@ -141,8 +141,8 @@ __PACKAGE__->add_columns( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ZD6xOAdXuMjglFtNa+DMEQ +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-10-27 13:24:06 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:2uCsPkQk5ul3ntBdbKFx8Q # You can replace this text with custom content, and it will be preserved on regeneration -- 2.39.2